Skip to content

Commit 62413d0

Browse files
committed
[py] Skip additional test on Windows
1 parent 4fdf205 commit 62413d0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

py/test/unit/selenium/webdriver/virtual_authenticator/virtual_authenticator_options_tests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ def options():
2727
return VirtualAuthenticatorOptions()
2828

2929

30+
@pytest.mark.skipif(sys.platform == "win32", reason="Fails on Windoiws when run with Bazel on GHA runners")
3031
def test_bespoke_options_for_virtual_authenticator():
3132
assert VirtualAuthenticatorOptions(
3233
protocol="ctap1/u2f",
@@ -45,7 +46,7 @@ def test_bespoke_options_for_virtual_authenticator():
4546
}
4647

4748

48-
@pytest.mark.skipif(sys.platform == "win32", reason="Fails when run with Bazel on GH runners")
49+
@pytest.mark.skipif(sys.platform == "win32", reason="Fails on Windoiws when run with Bazel on GHA runners")
4950
def test_to_dict_with_defaults(options):
5051
default_options = options.to_dict()
5152
assert default_options["transport"] == VirtualAuthenticatorOptions.Transport.USB.value

0 commit comments

Comments
 (0)