Skip to content

cargo-nextest 0.9.70

Compare
Choose a tag to compare
@github-actions github-actions released this 24 Apr 21:56
· 75 commits to main since this release

Added

  • Archives can now include extra paths in them. For example:

    [profile.default]
    archive.include = [
        { path = "my-extra-path", relative-to = "target" }
    ]

    For more information, see Adding extra files to an archive.

    Thanks to @rukai for your first contribution!

  • You can now pass in --cargo-quiet twice to completely discard standard error for the Cargo
    commands run by nextest. This is equivalent to 2> /dev/null.

Fixed

  • The initial cargo metadata execution now passes in --frozen, --locked, --offline and --quiet if the corresponding flags are passed into nextest.
  • Previously, NEXTEST_HIDE_PROGRESS_BAR=1 did not work (only NEXTEST_HIDE_PROGRESS_BAR=true
    did). Now both 1 and true work.

Changed

  • Updated MSRV for compiling nextest to Rust 1.74.