We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ad50c3 commit 247bd53Copy full SHA for 247bd53
report-pull-request-results.py
@@ -313,8 +313,8 @@ def read_maxmem_comparison_file(unit_tests_file):
313
"@cms-sw/core-l2 , I found %s workflow step(s) with memory usage exceeding the error threshold:\n"
314
% err_cnt
315
)
316
- message += ("<details>\n<summary>Expand to see workflows ...</summary>\n\n")
317
- for message_line in sorted(errors_found, key=lambda s: float(s[2].split("_")[0])):
+ message += "<details>\n<summary>Expand to see workflows ...</summary>\n\n"
+ for message_line in sorted(errors_found, key=lambda s: float(s[2].split("_")[0])):
318
message += " ".join(message_line)
319
message += "</details>\n\n"
320
send_message_pr(message)
0 commit comments