Skip to content

Commit 802df44

Browse files
committed
step
1 parent c551809 commit 802df44

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extra/ci_inspect_logs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ def print_test_matrix(artifact, artifact_boards, title, sketch_filter=lambda x:
323323
for board in artifact_boards:
324324
# there are multiple tests per sketch&board due to FQBN variations
325325
# display the worst status, and flag invalid exceptions
326-
status = max( [ t.status for t in res.tests if t.board == board ], SKIP)
326+
status = max( [ t.status for t in res.tests if t.board == board ], default=SKIP)
327327
invalid = any( [ t.invalid_exception for t in res.tests if t.board == board ] )
328328
if invalid and status in (PASS, WARNING):
329329
status_icon = ":interrobang:"

0 commit comments

Comments
 (0)