-
Notifications
You must be signed in to change notification settings - Fork 297
/
conftest.py
37 lines (31 loc) · 1.47 KB
/
conftest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# -*- coding: utf-8 -*-
"""
Skipping slow tests according to command line: https://docs.pytest.org/en/latest/example/simple.html
"""
import pytest
def pytest_addoption(parser):
parser.addoption("--runslow", action="store_true", default=False, help="run slow tests")
parser.addoption("--rungpu", action="store_true", default=False, help="run gpu tests")
parser.addoption(
"--runovernight", action="store_true", default=False, help="run overnight tests"
)
def pytest_configure(config):
config.addinivalue_line("markers", "slow: mark test as slow to run")
config.addinivalue_line("markers", "gpu: mark test as gpu required to run")
config.addinivalue_line("markers", "overnight: mark test as gpu required to run")
def pytest_collection_modifyitems(config, items):
if not config.getoption("--runslow"):
skip_slow = pytest.mark.skip(reason="need --runslow option to run")
for item in items:
if "slow" in item.keywords:
item.add_marker(skip_slow)
if not config.getoption("--rungpu"):
skip_gpu = pytest.mark.skip(reason="need --rungpu option to run")
for item in items:
if "gpu" in item.keywords:
item.add_marker(skip_gpu)
if not config.getoption("--runovernight"):
skip_overnight = pytest.mark.skip(reason="need --runovernight option to run")
for item in items:
if "overnight" in item.keywords:
item.add_marker(skip_overnight)