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 dada4fb commit 9d78c50Copy full SHA for 9d78c50
py/conftest.py
@@ -113,8 +113,8 @@ def driver(request):
113
pytest.skip("Safari tests can only run on an Apple OS")
114
if (driver_class == "Ie") and _platform != "Windows":
115
pytest.skip("IE and EdgeHTML Tests can only run on Windows")
116
- if "WebKit" in driver_class and _platform != "Linux":
117
- pytest.skip("Webkit tests can only run on Linux")
+ if "WebKit" in driver_class and _platform == "Windows":
+ pytest.skip("WebKit tests can not be run on Windows")
118
119
# conditionally mark tests as expected to fail based on driver
120
marker = request.node.get_closest_marker(f"xfail_{driver_class.lower()}")
0 commit comments