Skip to content

Commit e25855f

Browse files
committed
BUG: fix incorrect naming of test only sessions in html summaries
1 parent 8d70e99 commit e25855f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cibuildwheel/logger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ def _github_step_summary(self, duration: float, options: "Options") -> str:
320320
n_wheels = len([b for b in self.summary if b.filename])
321321
wheel_rows = "\n".join(
322322
"<tr>"
323-
f"<td nowrap>{'<samp>' + b.filename.name + '</samp>' if b.filename else '*Build only*'}</td>"
323+
f"<td nowrap>{'<samp>' + b.filename.name + '</samp>' if b.filename else '*Test only*'}</td>"
324324
f"<td nowrap>{b.size or 'N/A'}</td>"
325325
f"<td nowrap><samp>{b.identifier}</samp></td>"
326326
f"<td nowrap>{humanize.naturaldelta(b.duration)}</td>"

0 commit comments

Comments
 (0)