ci(test-reporter): list only failed tests to avoid 64 KiB Check Run cap#448
Merged
Conversation
The 'test (macos)' Check Run on PR #437 hit the GitHub 65535-byte limit on Check Run output bodies — the dorny/test-reporter default lists all 672 passing test names alongside the 1 failing one, blowing the cap and truncating the report. Pass list-tests: failed in both ci-pr.yml and ci-main.yml so the summary lists only the failing tests. The per-suite pass/fail/skip counts at the top still render, so reviewers still see 'X passed, Y failed' at a glance — they just don't have to scroll through 600+ passing-test rows underneath.
afrind
approved these changes
Jun 25, 2026
afrind
left a comment
Contributor
There was a problem hiding this comment.
@afrind reviewed 2 files and all commit messages.
Reviewable status:complete! all files reviewed, all discussions resolved (waiting on gmarzot).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The
test (macos)Check Run on PR #437 (and any other PR with a large test suite) hits GitHub's hard cap of 65 535 bytes on Check Run output bodies and gets trimmed:Cause:
dorny/test-reporterdefaults tolist-tests: all, which emits every passing test name (672 of them in our case) alongside the 1 failing one. With 673 entries the markdown body sails past 64 KiB.Fix: set
list-tests: failedin bothci-pr.ymlandci-main.yml. Only failing tests get listed in the Check Run summary; the per-suite pass/fail/skip counts at the top still render, so reviewers still see "672 passed, 1 failed" at a glance — they just don't have to scroll through 600+ ✅ rows to find the ❌.What stays / what changes
Test plan
test (linux/macos/asan debug)jobsThis change is