-
Notifications
You must be signed in to change notification settings - Fork 1
/
conftest.py
97 lines (85 loc) · 2.96 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
"""conftest.py.
`pytest` configuration file. Currently used to flag tests for set-up only.
Reworked example from pytest docs:
https://docs.pytest.org/en/latest/example/simple.html.
"""
import pytest
def pytest_addoption(parser):
"""Adapt pytest cli args, and give more info when -h flag is used."""
parser.addoption(
"--runsetup",
action="store_true",
default=False,
help="run set-up tests",
)
parser.addoption(
"--runinteg",
action="store_true",
default=False,
help="run integration tests",
)
parser.addoption(
"--runexpensive",
action="store_true",
default=False,
help="run expensive tests",
)
parser.addoption(
"--sanitycheck",
action="store_true",
default=False,
help="run sanity checks",
)
def pytest_configure(config):
"""Add ini value line."""
config.addinivalue_line("markers", "setup: mark test to run during setup")
config.addinivalue_line(
"markers", "runinteg: mark test to run for integration tests"
)
config.addinivalue_line(
"markers", "runexpensive: mark test to run expensive tests"
)
config.addinivalue_line(
"markers",
"sanitycheck: mark test to run checks in dependencies' code.",
)
def pytest_collection_modifyitems(config, items): # noqa:C901
"""Handle switching based on cli args."""
if (
config.getoption("--runsetup")
& config.getoption("--runinteg")
& config.getoption("--runexpensive")
& config.getoption("--sanitycheck")
):
# do full test suite when all flags are given
return
# do not add setup marks when the runsetup flag is given
if not config.getoption("--runsetup"):
skip_setup = pytest.mark.skip(reason="need --runsetup option to run")
for item in items:
if "setup" in item.keywords:
item.add_marker(skip_setup)
# do not add integ marks when the runinteg flag is given
if not config.getoption("--runinteg"):
skip_runinteg = pytest.mark.skip(
reason="need --runinteg option to run"
)
for item in items:
if "runinteg" in item.keywords:
item.add_marker(skip_runinteg)
# do not add expensive marks when the runexpensive flag is given
if not config.getoption("--runexpensive"):
skip_runexpensive = pytest.mark.skip(
reason="need --runexpensive option to run"
)
for item in items:
if "runexpensive" in item.keywords:
item.add_marker(skip_runexpensive)
# do not add sanitycheck marks when the sanitycheck flag is given
if not config.getoption("--sanitycheck"):
skip_sanitycheck = pytest.mark.skip(
reason="need --sanitycheck option to run"
)
for item in items:
if "sanitycheck" in item.keywords:
item.add_marker(skip_sanitycheck)