8 lines
163 B
Python

def pytest_addoption(parser):
parser.addoption(
'--run-slow',
action='store_true',
default=False,
help='Run slow tests',
)