feat: Add --progress flag for live progress display#17
Merged
haugoug merged 1 commit intogvsoc:mainfrom Mar 11, 2026
Merged
Conversation
8f0ebd7 to
71b1419
Compare
8b68995 to
4fb1ee9
Compare
Two new display modes for monitoring test execution: --no-progress: Disable the live progress bar (on by default) Shows colored progress bar with pass/fail/skip counters below scrolling OK/KO results. --tui: Full-screen curses TUI with split-pane layout ┌─ Results ─────────────────┬─ Running ────────────┐ │ OK test_3 default │ test_0 1.2s │ │ KO test_5 siracusa │ test_1 0.8s │ ├─ Progress ────────────────┴──────────────────────┤ │ ████░░░ 45/120 | pass:42 fail:2 skip:1 | 3m12s │ └──────────────────────────────────────────────────┘ Left: scrollable results (↑↓ PageUp/Down Home/End) Right: currently running tests with elapsed time Bottom: colored progress bar No external dependencies (uses curses from stdlib). Scroll controls: - ↑↓ PageUp/PageDown: scroll results - Home: jump to top - End: resume auto-follow - q/ESC: quit Progress bar features: - Colored segments: green=pass, red=fail, yellow=skip - Minimum 1 char per non-zero segment (no invisible failures) - Counts skipped/excluded tests correctly 136 tests passing.
4fb1ee9 to
7e12e9f
Compare
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.
Adds a Rich-based live progress display with
--progressflag.What it shows
Usage
136 tests passing.