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 63faacc commit 00df385Copy full SHA for 00df385
pytest_pyodide/hook.py
@@ -299,7 +299,7 @@ def pytest_collection_modifyitems(items: list[Any]) -> None:
299
def _get_item_position(item):
300
counter[0] += 1
301
if any(
302
- [re.match(r"^safari[\-$]?", el) for el in item.keywords._markers.keys()]
+ re.match(r"^safari[\-$]?", el) for el in item.keywords._markers.keys()
303
) and _has_standalone_fixture(item):
304
return counter[0] - OFFSET
305
return counter[0]
0 commit comments