Skip to content

Commit 40d97e9

Browse files
[CI] Fix printing of test report in summary view (#173314)
ffe973a changed some of the internal APIs to return a tuple instead of just the report. This callsite was never updated which resulted in the tuple being printed to the summary view when we only wanted the report.
1 parent 315dee1 commit 40d97e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.ci/generate_test_report_github.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
)
1717
args = parser.parse_args()
1818

19-
report = generate_test_report_lib.generate_report_from_files(
19+
report, explained = generate_test_report_lib.generate_report_from_files(
2020
generate_test_report_lib.compute_platform_title(),
2121
args.return_code,
2222
args.build_test_logs,

0 commit comments

Comments
 (0)