anki/pylib/tests/run_pytest.py
2021-04-13 18:45:35 +10:00

19 lines
568 B
Python

# Copyright: Ankitects Pty Ltd and contributors
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
import os
import sys
import pytest
os.environ["ANKI_TEST_MODE"] = "1"
if __name__ == "__main__":
folder = os.path.join(os.path.dirname(__file__), "..", "tests")
args = ["--verbose", "-s", folder]
# allow specifying an individual test, eg
# bazel test //pylib:pytest --test_env=PYTEST=test_bury
if pytest_extra := os.environ.get("PYTEST", ""):
args.extend(["-k", pytest_extra])
sys.exit(pytest.main(args))