Skip to content

Commit 2cb81da

Browse files
committed
differently
1 parent 9402817 commit 2cb81da

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

conftest.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
return True

src/compas_dem/analysis/conftest.py

Lines changed: 0 additions & 2 deletions
This file was deleted.

src/compas_dem/viewer/conftest.py

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)