We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42496c4 commit 2207915Copy full SHA for 2207915
scripts/gha/report_build_status.py
@@ -592,10 +592,10 @@ def main(argv):
592
elif FLAGS.report == "test_summary":
593
test_list = {}
594
for day in days_sorted:
595
- if source_tests[day]['log_results']:
+ if day in source_tests and source_tests[day]['log_results']:
596
errors = aggregate_errors_from_log(source_tests[day]['log_results'])
597
test_link = source_tests[day]['html_url']
598
- elif package_tests[day]['log_results']:
+ elif day in package_tests and package_tests[day]['log_results']:
599
errors = aggregate_errors_from_log(package_tests[day]['log_results'])
600
test_link = package_tests[day]['html_url']
601
else:
0 commit comments