Added
- Improved support for reusing builds:
- New command
cargo nextest archiveautomatically archives test binaries and other relevant
files after building tests. Currently the.tar.zstformat is supported. - New option
cargo nextest run --archive-fileautomatically extracts archives before running the tests within them. - New runtime environment variable
NEXTEST_BIN_EXE_<name>is set to the absolute path to a binary target's executable, taking path remapping into account. This is equivalent toCARGO_BIN_EXE_<name>, except this is set at runtime. cargo nextest list --list-type binaries-onlynow records information about non-test binaries as well.
- New command
Fixed
Fix for experimental feature filter expressions:
- Fix test filtering when expression filters are set but name-based filters aren't.