cargo-nextest 0.9.64
·
1330 commits
to main
since this release
Added
- Stabilized and documented the binary ID format.
- Support for glob matchers in filter expressions. For example,
package(foo*)
will match all tests whose names start withfoo
. - A new
binary_id()
predicate matches against the binary ID.
Changed
-
Unit tests in proc-macro crates now have a binary ID that consists of just the crate name, similar to unit tests in normal crates.
-
The default string matcher for the following predicates has changed from equality to glob:
- Package-related matchers:
package()
,deps()
, andrdeps()
- Binary-related matchers:
binary()
The new
binary_id()
predicate also uses the glob matcher by default. - Package-related matchers:
Fixed
- Fixed a regression with some Cargo nightly-only features: see guppy-rs/guppy#174 for more details.