Added
-
Nextest now supports user configuration for personal preferences. User config is stored in
~/.config/nextest/config.toml(or%APPDATA%\nextest\config.tomlon Windows) and includes the following settings:show-progress: Controls progress display during test runs.max-progress-running: Maximum number of running tests to show in the progress bar.input-handler: Enable or disable keyboard input handling.output-indent: Enable or disable output indentation for captured test output.
User config settings are lower priority than CLI arguments and environment variables. For details, see User configuration.
Fixed
- Fixed an issue where nextest could hang when tests spawn interactive shells (e.g.,
zsh -ic) that calltcsetpgrpto become the foreground process group. Nextest now ignoresSIGTTINandSIGTTOUsignals while input handling is active. (#2884)