Skip to content

cargo-nextest 0.9.82

Compare
Choose a tag to compare
@github-actions github-actions released this 29 Oct 03:16
· 104 commits to main since this release

Added

  • For crates with a build script, nextest now reads their output and sets environment variables from
    within them for tests. This matches cargo test's behavior. However, note that this usage is
    discouraged by Cargo
    .

    Thanks to chrjabs for your first contribution!

  • On Unix platforms, nextest now also intercepts the SIGQUIT signal, in addition to the existing
    SIGINT, SIGTERM, etc. More signals will be added to this list as makes sense.

Internal improvements

  • Switch internal logging over to the fantastic tracing library. Nextest doesn't do much
    structured logging or event/span logging yet, but tracing provides a great foundation to add that
    in the future.
  • Internal dependency updates.