feat(main): periodic \r progress for simulation when stderr is a TTY#361
Merged
Conversation
Prints "Simulated N / Max runs" (or "Simulated N runs" when unlimited) to stderr every 100 runs, overwriting the same line via \r and clearing trailing chars via \033[K. Helps users see that long simulation runs are making progress. Silent unless stderr is a TTY, which: - Keeps log files / pipes / test_references.py output clean. - Keeps parallel worker logs clean (each worker's stderr is a regular file when redirected by the fizz wrapper, not a TTY). - Works correctly under interactive SSH (PTY allocated -> TTY) and tmux/screen; silent under scripted ssh without -t and under `... 2>&1 | tee log` (stderr becomes a pipe). A small clearProgressLine helper emits a trailing \n to stderr before the post-loop "Stopped after N runs" line and before in-loop failure prints, so the next output starts on a fresh line instead of being appended to the progress line. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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.
Prints "Simulated N / Max runs" (or "Simulated N runs" when unlimited) to stderr every 100 runs, overwriting the same line via \r and clearing trailing chars via \033[K. Helps users see that long simulation runs are making progress.
Silent unless stderr is a TTY, which:
... 2>&1 | tee log(stderr becomes a pipe).A small clearProgressLine helper emits a trailing \n to stderr before the post-loop "Stopped after N runs" line and before in-loop failure prints, so the next output starts on a fresh line instead of being appended to the progress line.