We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98540a6 commit 8b9fd39Copy full SHA for 8b9fd39
2 files changed
.github/actions/bot-ci-failure/analyze_failure.py
@@ -31,6 +31,7 @@
31
"Posting coverage data to https://coveralls.io",
32
"OperationalError: database is locked",
33
"ERROR: Could not install packages due to an OSError",
34
+ "about:neterror?e=connectionFailure",
35
)
36
37
.github/actions/bot-ci-failure/test_analyze_failure.py
@@ -197,6 +197,13 @@ def test_detects_connection_refused(self):
197
198
199
200
+ def test_detects_about_neterror_connection_failure(self):
201
+ self.assertTrue(
202
+ _is_transient_failure(
203
+ "Selenium loaded about:neterror?e=connectionFailure during test run"
204
+ )
205
206
+
207
def test_normal_test_failure_not_transient(self):
208
self.assertFalse(_is_transient_failure("FAIL: test_login"))
209
0 commit comments