Skip to content

Commit 4516b8a

Browse files
committed
add broken count to the ci jobs status table
1 parent 4b0eb33 commit 4516b8a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ci/jobs/scripts/functional_tests_results.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ def run(self):
356356
pass
357357

358358
if not info:
359-
info = f"Failed: {s.failed}, Passed: {s.success}, Skipped: {s.skipped}"
359+
info = f"Failed: {s.failed}, Passed: {s.success}, Skipped: {s.skipped}, Broken: {s.broken}"
360360

361361
result = Result.create_from(
362362
name="Tests",

ci/jobs/scripts/integration_tests_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1380,7 +1380,7 @@ def run_normal_check(self):
13801380
for c in counters[state]
13811381
]
13821382
failed_sum = len(counters["FAILED"]) + len(counters["ERROR"])
1383-
status_text = f"fail: {failed_sum}, passed: {len(counters['PASSED'])}"
1383+
status_text = f"fail: {failed_sum}, passed: {len(counters['PASSED'])}, broken: {len(counters['BROKEN'])}"
13841384

13851385
if not counters or sum(len(counter) for counter in counters.values()) == 0:
13861386
status_text = "No tests found for some reason! It's a bug"

0 commit comments

Comments
 (0)