File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -227,7 +227,7 @@ def _add_chrome_proxy_extension(
227
227
chrome_options = add_chrome_ext_dir (chrome_options , PROXY_DIR_PATH )
228
228
229
229
else :
230
- # Pytest multi-threaded test
230
+ # Pytest multithreaded test
231
231
if zip_it :
232
232
proxy_zip_lock = fasteners .InterProcessLock (PROXY_ZIP_LOCK )
233
233
with proxy_zip_lock :
@@ -2118,7 +2118,7 @@ def get_local_driver(
2118
2118
arg_join = " " .join (sys .argv )
2119
2119
if ("-n" in sys .argv ) or (" -n=" in arg_join ) or (arg_join == "-c" ):
2120
2120
# Skip if multithreaded
2121
- raise Exception ("Can't run Safari tests in multi-threaded mode!" )
2121
+ raise Exception ("Can't run Safari tests in multithreaded mode!" )
2122
2122
warnings .simplefilter ("ignore" , category = DeprecationWarning )
2123
2123
return webdriver .safari .webdriver .WebDriver (quiet = False )
2124
2124
elif browser_name == constants .Browser .OPERA :
Original file line number Diff line number Diff line change @@ -117,9 +117,8 @@ def __init__(
117
117
suppress_welcome: (default: True)
118
118
Suppress the Chrome welcome screen that appears on first-time runs.
119
119
120
- use_subprocess:
121
- False (default) Give Chrome its own process,
122
- rather than subprocessing chromedriver or python.
120
+ use_subprocess: (default: False)
121
+ Subprocess chromedriver/python: Don't make Chrome a parent process.
123
122
"""
124
123
self .debug = debug
125
124
patcher = Patcher (
You can’t perform that action at this time.
0 commit comments