4 lines
129 B
Python
4 lines
129 B
Python
|
def pytest_addoption(parser):
|
||
|
parser.addoption("--runslow", action="store_true",
|
||
|
help="Run slow tests")
|