Skip to content

Commit 1881111

Browse files
committed
[py] Adding more diagnostics to understand why python tests cannot connect to selenium server on travis
1 parent 41ca610 commit 1881111

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

py/conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,8 @@ def wait_for_server(url, timeout):
198198
try:
199199
urlopen(url)
200200
return 1
201-
except IOError:
201+
except IOError as e:
202+
print(e)
202203
time.sleep(0.2)
203204
return 0
204205

0 commit comments

Comments
 (0)