Skip to content

Commit

Permalink
Fix the fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeZiminski committed Jun 26, 2024
1 parent 6f2c47f commit b516bdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ def pytest_collection_modifyitems(config, items):
for item in items:
try:
rel_path = Path(item.fspath).relative_to(modules_location)
module = rel_path.parts[0]
except:
module = None
continue

module = rel_path.parts[0]
if module == "sorters":
if "internal" in rel_path.parts:
item.add_marker("sorters_internal")
Expand Down

0 comments on commit b516bdc

Please sign in to comment.