Skip to content

Commit e9917fb

Browse files
authored
Bencher Report: Include tests that fail in performance phase (#489)
1 parent e25e81b commit e9917fb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

utility/bencher_metric_format.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ def reframe_to_bmf(reframe_report):
2424
for run in data["runs"]:
2525
for testcase in run["testcases"]:
2626
if testcase["result"] != "pass":
27-
continue
27+
if testcase["fail_phase"] != "performance":
28+
continue
2829

2930
key = (testcase["system"],
3031
testcase["partition"],

0 commit comments

Comments
 (0)