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:
Kevin Howell 2020-03-04 07:16:40 -05:00 committed by GitHub
parent 1eb13f2629
commit 402a30e59f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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()} "