mirror of https://github.com/pyodide/pyodide.git
Increase the selenium timeout (#607)
I suspect this will fix recent PR failures that timeout on importing statsmodels on Chrome.
This commit is contained in:
parent
1eb13f2629
commit
402a30e59f
|
@ -77,7 +77,7 @@ class SeleniumWrapper:
|
|||
build_dir = BUILD_PATH
|
||||
|
||||
driver = self.get_driver()
|
||||
wait = WebDriverWait(driver, timeout=20)
|
||||
wait = WebDriverWait(driver, timeout=40)
|
||||
if not (pathlib.Path(build_dir) / 'test.html').exists():
|
||||
# selenium does not expose HTTP response codes
|
||||
raise ValueError(f"{(build_dir / 'test.html').resolve()} "
|
||||
|
|
Loading…
Reference in New Issue