mirror of
https://github.com/onyx-and-iris/voicemeeter-api-python.git
synced 2024-11-15 16:40:46 +00:00
312d5847ef
add --run-slow flag for pytest in conftest.py run --run-slow in pre-commit call tests.command.reset() before each test run
8 lines
163 B
Python
8 lines
163 B
Python
def pytest_addoption(parser):
|
|
parser.addoption(
|
|
"--run-slow",
|
|
action="store_true",
|
|
default=False,
|
|
help="Run slow tests",
|
|
)
|