Skip to content

cargo-nextest 0.9.80

Compare
Choose a tag to compare
@github-actions github-actions released this 05 Oct 21:27
· 344 commits to main since this release

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!