Add --show-skipped and --show-incomplete options#525
Merged
Chemaclass merged 3 commits intomainfrom Nov 30, 2025
Merged
Conversation
Add options to display skipped and incomplete tests summary at the end of test output, similar to how failed tests are displayed. - `--show-skipped` - displays skipped tests with their file location and reason - `--show-incomplete` - displays incomplete tests with their file location and details Closes #524
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
8e9faeb to
0592931
Compare
3bed796 to
e286a07
Compare
antonio-gg-dev
approved these changes
Nov 29, 2025
Member
|
Summary
Testing
|
JesusValeraDev
approved these changes
Nov 29, 2025
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.
📚 Description
Add two new command-line options to display skipped and incomplete tests at the end of the test output, similar to how failed tests are already displayed.
Problem: When running tests with simple output (
-s|--simple), skipped and incomplete tests only show as single characters (SorI), making it hard to identify which tests need attention.Solution: Add opt-in flags to display a summary of skipped and incomplete tests at the end:
--show-skipped- displays skipped tests with file location and reason--show-incomplete- displays incomplete tests with file location and pending details🎯 Usage Examples
Show skipped tests at the end
Show incomplete tests at the end
Combine both options
Use with simple output
🔖 Changes
BASHUNIT_SHOW_SKIPPEDandBASHUNIT_SHOW_INCOMPLETEenvironment variables--show-skippedand--show-incompleteCLI options🖼️ Demo
✅ Checklist
CHANGELOG.mdto reflect the new featureCloses #524