Added
-
Nextest can now update itself! Once this version is installed, simply run
cargo nextest self updateto update to the latest version.Note to distributors: you can disable self-update by building cargo-nextest with
--no-default-features. -
Partial, emulated support for test binary arguments passed in after
cargo nextest run --(#265, thanks @tabokie for your contribution!).For example,
cargo nextest run -- my_test --ignoredwill run ignored tests containingmy_test, similar tocargo test -- my_test --ignored.Support is limited to test names,
--ignoredand--include-ignored.Note to integrators: to reliably disable all argument parsing, pass in
--twice. For example,cargo nextest run -- -- my-filter.
Fixed
- Better detection for cross-compilation -- now look through the
CARGO_BUILD_TARGETenvironment variable, and Cargo configuration as well. The--targetoption is still preferred. - Slow and flaky tests are now printed out properly in the final status output (#270).