Skip to content

cargo-nextest 0.9.95

Compare
Choose a tag to compare
@github-actions github-actions released this 30 Apr 23:07
· 138 commits to main since this release

Added

You can now mark leaky tests as failed rather than passed. The default is still to treat them as passed. For more, see Marking leaky tests as failures.

Changed

Several display formatting improvements with a focus on visual clarity and reduced UI clutter:

  • Captured output (typically for failing tests) is now indented by 4 spaces, for easier-to-scan logs. This can be disabled with the new --no-output-indent option, or by setting NEXTEST_NO_OUTPUT_INDENT=1 in the environment.
  • If tests abort or fail through unexpected means (e.g. due to a signal), nextest now prints out a status line explaining what happened. For example, (test aborted with signal 6: SIGABRT).

Fixed

Fixed an occasional hang on Linux with libtest JSON output. For more details, see #2316.