Improve test summary to show both passed and failed packages#148
Merged
tamurashingo merged 2 commits intodevelopfrom Feb 8, 2026
Merged
Improve test summary to show both passed and failed packages#148tamurashingo merged 2 commits intodevelopfrom
tamurashingo merged 2 commits intodevelopfrom
Conversation
- Add passed-package-tests variable to track successful packages - Separate test results into 'Passed Packages' and 'Failed Packages' sections - Display package count for each section - Make it clear which tests were executed even when all tests pass
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
Improved the test runner summary to display both passed and failed packages separately. This makes it clear which tests were executed even when all tests pass successfully.
Background
Previously, only failed packages were displayed in the summary. When all tests passed, there was no indication of which packages were actually tested without reviewing the full log output.
Changes
passed-package-testsvariable to track successful packagesunlesstoifto record both success and failureTest Results
Before
When all tests passed, no summary section was displayed at all, making it unclear which packages were actually tested.
When there were failures:
After
When there are failed packages:
Verification
Verified with E2E tests:
Confirmed that all tests pass and executed packages are clearly displayed in the summary.