Skip to content

Commit 8b9fd39

Browse files
authored
[ci] Added about:neterror?e=connectionFailure in TRANSIENT_FAILURE_MARKERS
1 parent 98540a6 commit 8b9fd39

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

.github/actions/bot-ci-failure/analyze_failure.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"Posting coverage data to https://coveralls.io",
3232
"OperationalError: database is locked",
3333
"ERROR: Could not install packages due to an OSError",
34+
"about:neterror?e=connectionFailure",
3435
)
3536

3637

.github/actions/bot-ci-failure/test_analyze_failure.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,13 @@ def test_detects_connection_refused(self):
197197
)
198198
)
199199

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+
200207
def test_normal_test_failure_not_transient(self):
201208
self.assertFalse(_is_transient_failure("FAIL: test_login"))
202209

0 commit comments

Comments
 (0)