We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fe6f022 + 846d0ab commit 4ed592fCopy full SHA for 4ed592f
tests/conftest.py
@@ -112,7 +112,7 @@ def runner():
112
113
def pytest_collection_modifyitems(session, config, items) -> None: # noqa: ARG001
114
"""Add markers to Jupyter notebook tests."""
115
- if sys.platform == "debian" and "CI" in os.environ: # pragma: no cover
+ if sys.platform == "darwin" and "CI" in os.environ: # pragma: no cover
116
for item in items:
117
if isinstance(item, NotebookItem):
118
item.add_marker(pytest.mark.xfail(reason="Fails regularly on MacOS"))
0 commit comments