Changelog
This page documents new features and bugfixes for cargo-nextest. Please see the stability policy for how versioning works with cargo-nextest.
0.9.4 - 2022-02-16
The big new change is that release binaries are now available! Head over to Pre-built binaries for more.
Added
- In test output, module paths are now colored cyan (#42).
Fixed
- While querying binaries to list tests, lines ending with “: benchmark” will now be ignored (#46).
0.9.3 - 2022-02-14
Fixed
- Add a
BufWriter
around stderr for the reporter, reducing the number of syscalls and fixing issues around output overlap on Windows (#35). Thanks @fdncred for reporting this!
0.9.2 - 2022-02-14
Fixed
- Running cargo nextest from within a crate now runs tests for just that crate, similar to cargo test. Thanks Yaron Wittenstein for reporting this!
0.9.1 - 2022-02-14
Fixed
- Updated nextest-runner to 0.1.1, fixing builds on Rust 1.54.
0.9.0 - 2022-02-14
Initial release. Happy Valentine’s day!
Added
Supported in this initial release:
- Listing tests
- Running tests in parallel for faster results
- Partitioning tests across multiple CI jobs
- Test retries and flaky test detection
- JUnit support for integration with other test tooling