You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# durations=0 will display all tests execution time, sorted in ascending order starting from from the slowest one.
108
-
# -vv will also display tests with durration = 0.00s
109
-
addopts = "--verbose --pyargs --durations=0 --strict-markers"# always add these arguments to pytest
110
-
testpaths = ["tests"]
111
-
# directories to ignore when discovering tests
112
-
norecursedirs = [
113
-
"emerging_optimizers",
114
-
"external",
115
-
"examples",
116
-
"docs",
117
-
"scripts",
118
-
"tools",
119
-
"tutorials",
120
-
"*.egg",
121
-
".*",
122
-
"_darcs",
123
-
"build",
124
-
"CVS",
125
-
"dist",
126
-
"venv",
127
-
"{arch}"
128
-
]
129
-
# markers to select tests, use `pytest --markers` to see all available markers, `pytest -m "<marker>"` to select tests
130
-
markers = [
131
-
"unit: marks unit test, i.e. testing a single, well isolated functionality (deselect with '-m \"not unit\"')",
132
-
"integration: marks test checking the elements when integrated into subsystems (deselect with '-m \"not integration\"')",
133
-
"system: marks test working at the highest integration level (deselect with '-m \"not system\"')",
134
-
"acceptance: marks test checking whether the developed product/model passes the user defined acceptance criteria (deselect with '-m \"not acceptance\"')",
135
-
"docs: mark tests related to documentation (deselect with '-m \"not docs\"')",
136
-
"skipduringci: marks tests that are skipped ci as they are addressed by Jenkins jobs but should be run to test user setups",
137
-
"pleasefixme: marks tests that are broken and need fixing",
0 commit comments