Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pytest_pyodide/hook.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def pytest_collection_modifyitems(items: list[Any]) -> None:
def _get_item_position(item):
counter[0] += 1
if any(
[re.match(r"^safari[\-$]?", el) for el in item.keywords._markers.keys()]
re.match(r"^safari[\-$]?", el) for el in item.keywords._markers.keys()
) and _has_standalone_fixture(item):
return counter[0] - OFFSET
return counter[0]
Expand Down
Loading