Skip to content

Commit f775c57

Browse files
committed
cove_360: tests_functional: chromedriver_autoinstaller if failed try anyway
It could be a permissions error or already installed as seen in GH actions.
1 parent 5a566bc commit f775c57

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

cove/cove_360/tests_functional.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@
1616
PREFIX_360 = os.environ.get('PREFIX_360', '/')
1717

1818
# Ensure the correct version of chromedriver is installed
19-
chromedriver_autoinstaller.install()
19+
try:
20+
chromedriver_autoinstaller.install()
21+
except Exception:
22+
pass
2023

2124

2225
@pytest.fixture(scope="module")

0 commit comments

Comments
 (0)