File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
examples/python/tests/drivers Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 99
1010
1111@pytest .mark .skipif (sys .platform == "win32" , reason = "Gets stuck on Windows, passes locally" )
12- @pytest .mark .sanity
1312def test_start_remote_with_client_config (grid_server ):
1413 proxy = Proxy ({"proxyType" : ProxyType .AUTODETECT })
1514 retries = Retry (connect = 2 , read = 2 , redirect = 2 )
1615 timeout = Timeout (connect = 300 , read = 3600 )
1716 client_config = ClientConfig (remote_server_addr = grid_server ,
1817 proxy = proxy ,
19- init_args_for_pool_manager = {"retries" : retries , "timeout" : timeout },
18+ init_args_for_pool_manager = {
19+ "init_args_for_pool_manager" : {"retries" : retries , "timeout" : timeout }},
2020 ca_certs = _get_resource_path ("tls.crt" ),
2121 username = "admin" , password = "myStrongPassword" )
2222 options = webdriver .ChromeOptions ()
@@ -26,7 +26,6 @@ def test_start_remote_with_client_config(grid_server):
2626
2727
2828@pytest .mark .skipif (sys .platform == "win32" , reason = "Gets stuck on Windows, passes locally" )
29- @pytest .mark .sanity
3029def test_start_remote_ignore_certs (grid_server ):
3130 proxy = Proxy ({"proxyType" : ProxyType .AUTODETECT })
3231 client_config = ClientConfig (remote_server_addr = grid_server ,
You can’t perform that action at this time.
0 commit comments