Releases: nextest-rs/nextest
Releases · nextest-rs/nextest
nextest-runner 0.64.0
See the changelog for cargo-nextest 0.9.81.
cargo-nextest 0.9.81
Fixed
Fixed semantics of --exact
to match Rust's libtest: --exact
now makes it so that all filters passed in after --
(including --skip
filters) are matched exactly.
nextest-runner 0.63.0
See the changelog for cargo-nextest 0.9.80.
cargo-nextest 0.9.80
Added
Support for --skip
and --exact
as emulated test binary arguments. The semantics match those of libtest
binaries.
For example, to run all tests other than those matching the substring slow_tests
:
cargo nextest run -- --skip slow_tests
To run all tests matching either the substring my_test
or the exact string exact_test
:
cargo nextest run -- my_test --exact exact_test
Thanks to svix-jplatte for your first contribution!
cargo-nextest 0.9.79
Added
- Expanded version information:
cargo nextest -V
now shows commit and date information similar torustc
andcargo
, andcargo nextest --version
shows this information in long form.
Fixed
- Nextest will now enable colors by default in more situations, particularly over SSH connections. For more information, see this issue.
- Fixed a case of
cargo metadata
parsing with renamed packages (#1746).
cargo-nextest 0.9.79-rc.2
Added
- Expanded version information:
cargo nextest -V
now shows commit and date information similar torustc
andcargo
, andcargo nextest --version
shows this information in long form.
Fixed
- Nextest will now enable colors by default in more situations, particularly over SSH connections. For more information, see this issue.
- Fixed a case of
cargo metadata
parsing with renamed packages (#1746).
nextest-runner 0.62.0
See the changelog for cargo-nextest 0.9.79.
cargo-nextest 0.9.79-rc.1
Added
- Expanded version information:
cargo nextest -V
now shows commit and date information similar torustc
andcargo
, andcargo nextest --version
shows this information in long form.
Fixed
- Nextest will now enable colors by default in more situations, particularly over SSH connections. For more information, see this issue.
- Fixed a case of
cargo metadata
parsing with renamed packages (#1746).
nextest-runner 0.61.0
See the changelog for cargo-nextest 0.9.78.
nextest-metadata 0.12.1
Internal dependency updates.