fx, xy unit tests added to higher.

add --run-slow flag for pytest in conftest.py

run --run-slow in pre-commit

call tests.command.reset() before each test run
This commit is contained in:
onyx-and-iris
2022-07-16 21:22:45 +01:00
parent 1a6f3d6c73
commit 312d5847ef
4 changed files with 92 additions and 3 deletions

7
tests/conftest.py Normal file
View File

@@ -0,0 +1,7 @@
def pytest_addoption(parser):
parser.addoption(
"--run-slow",
action="store_true",
default=False,
help="Run slow tests",
)