Skip to content

cargo-nextest 0.9.87

Compare
Choose a tag to compare
@github-actions github-actions released this 17 Dec 22:02
· 106 commits to main since this release

Changed

  • On Windows, if a Ctrl-C is received and running tests don't terminate within the
    grace period (default 10 seconds), they're now forcibly terminated via a job
    object. Previously, nextest would wait indefinitely for tests to exit, unlike
    the behavior on Unix platforms where tests are SIGKILLed after the grace period.
  • The UI has also been updated to make it clearer when tests are forcibly
    terminated on Windows.

Fixed

  • Fixed a race condition between test cancellation and new tests being started.
    Now, once cancellation has begun, no new tests (or retries) will be started.