We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9402817 commit 2cb81daCopy full SHA for 2cb81da
conftest.py
@@ -0,0 +1,8 @@
1
+import pathlib
2
+
3
4
+def pytest_ignore_collect(collection_path: pathlib.Path):
5
+ if collection_path.parts[-1] == "viewer":
6
+ return True
7
+ if collection_path.parts[-1] == "analysis":
8
src/compas_dem/analysis/conftest.py
src/compas_dem/viewer/conftest.py
0 commit comments