We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04b0e08 commit 171cbeeCopy full SHA for 171cbee
common/log_parser/merge_jsons.py
@@ -133,9 +133,10 @@ def count_fails_in_json(data):
133
elif isinstance(res, str):
134
# e.g. "FAILED (WITH WAIVER)"
135
if "FAILED" in res.upper() or "FAILURE" in res.upper() or "FAIL" in res.upper():
136
- total_failed += 1
137
if "(WITH WAIVER)" in res.upper():
138
total_failed_with_waiver += 1
+ else
139
+ total_failed +=1
140
141
# If we found zero subtests across the entire suite => treat that as a fail
142
if not any_subtests_found:
0 commit comments