Skip to content

cargo-nextest 0.9.68

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 17 Mar 00:25
· 74 commits to main since this release

This is a maintenance release with many internal improvements, and preparation for future features.

Changed

  • Nextest binaries now ship with symbols, producing better stack traces. This is aligned with the behavior. See issue #1345 for more information.

  • Thanks to recent improvements, Miri is now significantly less taxing. As a result, nextest with Miri has been changed to use all threads by default. You can restore the old Miri behavior (run one test at a time) with -j1, or by setting in .config/nextest.toml:

    [profile.default-miri]
    test-threads = 1

    Rules for heavy tests and test groups will continue to be followed with Miri.

    Thanks to Ben Kimock for driving the Miri improvements and updating nextest!

Misc