File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
py/test/unit/selenium/webdriver/virtual_authenticator Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff 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" )
3031def 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" )
4950def test_to_dict_with_defaults (options ):
5051 default_options = options .to_dict ()
5152 assert default_options ["transport" ] == VirtualAuthenticatorOptions .Transport .USB .value
You can’t perform that action at this time.
0 commit comments