Skip to content

Commit d11c7b1

Browse files
committed
step
1 parent 42db57e commit d11c7b1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

extra/ci_collect_logs.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -226,11 +226,10 @@ def process_build_reports():
226226
continue
227227

228228
print("\n---\n")
229-
print(f"### `{artifact}` test results:")
230229

231230
# Print the test matrix
232231

233-
header_row = "<tr><th colspan='2'>Sketch / Board</th>"
232+
header_row = "<tr><th colspan='2'><b><code>${artifact}</code></b></th>"
234233
for board in artifact_boards:
235234
status = BOARD_SUMMARY[board]['status']
236235
header_col = f"<code>{board}</code>"
@@ -297,7 +296,7 @@ def process_build_reports():
297296
for sketch_status in [ERROR, EXPECTED_ERROR, WARNING]:
298297
for sketch_name, test_log_map in sketch_log_map.get(sketch_status, []):
299298
sketch_id = sketch_name.replace('/', '_').replace(' ', '_').replace('-', '_')
300-
print(f"<a name='{artifact}_{sketch_id}'/><details name='{artifact}'><summary>Logs for {TEST_STATUS[sketch_status]} {example_name(sketch_name)}</summary>\n")
299+
print(f"<a name='{artifact}_{sketch_id}'/><details name='{artifact}'><summary><code>{artifact}</code> logs for {TEST_STATUS[sketch_status]} {example_name(sketch_name)}</summary>\n")
301300
print("<table>")
302301
for test_status in [ERROR, EXPECTED_ERROR, WARNING]:
303302
for text in test_log_map.get(test_status, []):

0 commit comments

Comments
 (0)