Skip to content

cargo-nextest 0.9.32

Compare
Choose a tag to compare
@github-actions github-actions released this 30 Jul 23:08
· 2289 commits to main since this release

Added

  • cargo nextest run now has a new --no-run feature to build but not run tests. (This was previously achievable with cargo nextest list -E 'none()', but is more intuitive this way.)
  • Pre-built binaries are now available for i686 Windows. Thanks Guiguiprim!

Internal improvements

  • Filter expression evaluation now uses a stack machine via the recursion crate. Thanks Inanna for your first contribution!