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 e5c12f4 commit c0b253fCopy full SHA for c0b253f
dpctl/tests/conftest.py
@@ -60,7 +60,10 @@ def pytest_addoption(parser):
60
def pytest_collection_modifyitems(config, items):
61
if config.getoption("--runcomplex"):
62
return
63
- skip_complex = pytest.mark.skip(reason="need --runcomplex option to run")
+ skip_complex = pytest.mark.skipif(
64
+ sys.platform == "win32",
65
+ reason="need --runcomplex option to run on Windows",
66
+ )
67
for item in items:
68
if "broken_complex" in item.keywords:
69
item.add_marker(skip_complex)
0 commit comments