From 402a30e59f479b75db9467336d04cc4d693b9f28 Mon Sep 17 00:00:00 2001 From: Kevin Howell Date: Wed, 4 Mar 2020 07:16:40 -0500 Subject: [PATCH] Increase the selenium timeout (#607) I suspect this will fix recent PR failures that timeout on importing statsmodels on Chrome. --- conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conftest.py b/conftest.py index f1696d3e8..44069dc1b 100644 --- a/conftest.py +++ b/conftest.py @@ -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()} "