2022-06-16 16:10:06 +01:00
|
|
|
def pytest_addoption(parser):
|
|
|
|
parser.addoption(
|
2025-01-17 15:01:40 +00:00
|
|
|
'--run-slow',
|
|
|
|
action='store_true',
|
2022-06-16 16:10:06 +01:00
|
|
|
default=False,
|
2025-01-17 15:01:40 +00:00
|
|
|
help='Run slow tests',
|
2022-06-16 16:10:06 +01:00
|
|
|
)
|