Update dependency cargo-nextest to v0.9.111 #88
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.9.103->0.9.111Release Notes
nextest-rs/nextest (cargo-nextest)
v0.9.111: cargo-nextest 0.9.111Compare Source
Added
fail-fast = { max-fail = 1, terminate = "immediate" }in your configuration, or use--max-fail=1:immediate, to terminate running tests as soon as the first test fails.Changed
In interactive terminals, nextest now shows 8 running tests by default underneath the progress bar. Control the maximum number of tests displayed with the
--max-progress-runningoption.As part of this change,
--show-progress=runningis now an alias for--show-progress=bar. To only show running tests, use--show-progress=only.Non-UTF-8 test output is now encoded with
String::from_utf8_lossybefore being printed out to the terminal. This should generally not be a visible change, since most tests produce UTF-8 output.When the progress bar is displayed, nextest now writes to terminal output every 50ms.
Fixed
v0.9.110: cargo-nextest 0.9.110Compare Source
Added
Fixed
--show-progress=running, the global progress bar now stays in place more often, providing a smoother visual experience.Changed
Internal improvements
global_slot,group_slot, andtest_groupfields for test attempt events.--show-progress=runningandonly.v0.9.109: cargo-nextest 0.9.109Compare Source
Added
A new
runningprogress mode that shows currently running tests in addition to the progress bar. Use--show-progress=runningto see both running tests and information about successful tests, or--show-progress=onlyfor a more compact output showing only running tests, without displaying any output related to successful tests.Thanks glehmann for your first contribution!
The
cargo nextest archivecommand now supports binary filtering via the--filtersetor-Eoptions. This allows you to reduce the size of archives by including only a subset of test binaries. Note that test binaries are not executed during archiving, sotest()predicates are not supported.Thanks clundin55 for your first contribution!
Fixed
--show-progress=counterfor better output formatting and reliability.Other improvements
run-startandrun-doneevents to include stress run information.stress-sub-run-startandstress-sub-run-doneevents for tracking individual stress run iterations.stdout_lenandstderr_lenfields for output size tracking.v0.9.108: cargo-nextest 0.9.108Compare Source
Added
Support for USDT (User-level Statically Defined Tracing) probes for observability and debugging. USDT probes allow tools like DTrace and bpftrace to trace nextest's internal operations. The initial probes cover test execution lifecycle events.
For more information, see the USDT documentation.
In CI, test status lines now include a counter showing the number of tests that have been executed (#2618). Thanks bobrik for your first contribution!
Changed
v0.9.106: cargo-nextest 0.9.106Compare Source
Fixed
target-pointer-widthbecoming an integer in the newest Rust nightlies.Changed
v0.9.105: cargo-nextest 0.9.105Compare Source
Changed
On Windows, job objects are now created with
JOB_OBJECT_LIMIT_BREAKAWAY_OK. This enables test processes to have their children be assigned a different job object, which is particularly relevant on Windows 7 since that platform doesn't have nested job objects.Thanks to Guiguiprim for the contribution!
v0.9.104: cargo-nextest 0.9.104Compare Source
Added
Changed
--configarguments to Cargo invocations. Thanks to benschulz for your first contribution!target-specupdated to 3.5.1, updating built-in targets to Rust 1.89.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.