Add a `@no_macos` skipif deco

ns_aware
Gud Boi 2026-02-24 20:02:14 -05:00
parent 86489cc453
commit c5af2fa778
1 changed files with 4 additions and 0 deletions

View File

@ -44,6 +44,10 @@ no_windows = pytest.mark.skipif(
platform.system() == "Windows", platform.system() == "Windows",
reason="Test is unsupported on windows", reason="Test is unsupported on windows",
) )
no_macos = pytest.mark.skipif(
platform.system() == "Darwin",
reason="Test is unsupported on MacOS",
)
def pytest_addoption( def pytest_addoption(