mirror of
https://github.com/icicle-emu/icicle-python
synced 2026-06-21 13:53:41 +00:00
10 lines
294 B
Python
10 lines
294 B
Python
import sys
|
|
import pytest
|
|
|
|
def pytest_collection_modifyitems(config, items):
|
|
if sys.platform == "darwin":
|
|
skip_macos = pytest.mark.skip(reason="Skipped on macOS")
|
|
for item in items:
|
|
if "example.py" in str(item.fspath):
|
|
item.add_marker(skip_macos)
|