commit | faafe532a82183225bed306d09b1c424f6fe1e0c | [log] [tgz] |
---|---|---|
author | Alexei Barantsev <barancev@gmail.com> | Wed Sep 25 10:27:57 2019 +0300 |
committer | Alexei Barantsev <barancev@gmail.com> | Wed Sep 25 10:27:57 2019 +0300 |
tree | 5305f3917abde027e833107e710e61f523172c47 | |
parent | 8e481454dc2f3feaf6ff4f17dbb0e85724f84473 [diff] [blame] |
[py] Adding more diagnostics to understand why python tests cannot connect to selenium server on travis Cr-Mirrored-From: https://chromium.googlesource.com/external/github.com/SeleniumHQ/selenium Cr-Mirrored-Commit: 1881111f3103d7e61943705c92f94dbb7d64b6d0
diff --git a/conftest.py b/conftest.py index ec89ada..b6882cd 100644 --- a/conftest.py +++ b/conftest.py
@@ -198,7 +198,8 @@ try: urlopen(url) return 1 - except IOError: + except IOError as e: + print(e) time.sleep(0.2) return 0