8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78b8850 commit 9d4feedCopy full SHA for 9d4feed
numpy/conftest.py
@@ -13,6 +13,13 @@
13
_collect_results = {}
14
15
16
+def pytest_configure(config):
17
+ config.addinivalue_line("markers",
18
+ "valgrind_error: Tests that are known to error under valgrind.")
19
20
+ "slow: Tests that are very slow.")
21
+
22
23
#FIXME when yield tests are gone.
24
@pytest.hookimpl()
25
def pytest_itemcollected(item):
pytest.ini
@@ -24,7 +24,3 @@ filterwarnings =
env =
26
PYTHONHASHSEED=0
27
-
28
-markers =
29
- valgrind_error: Known to cause errors under valgrind
30
- slow: Tests which are slow
0 commit comments