nextest icon indicating copy to clipboard operation
nextest copied to clipboard

A next-generation test runner for Rust.

Results 140 nextest issues
Sort by recently updated
recently updated
newest added

When downloading binaries from a GitHub releases page, or downloads/release pages in general, there should be checksums available for reference. Examples: GitHub CLI: https://github.com/cli/cli/releases/tag/v1.9.2 GitLab CLI: https://github.com/profclems/glab/releases/tag/v1.16.0 Both have a...

I'm using a custom test harness using `libtest-mimic` (version 0.6.0), but when one of those tests fails, `cargo nextest run` still reports it as passed.

question

Is there support for running Nextest without Cargo? That is, using only the binary that `rustc --test` outputs. I have skimmed through the codebase, but I'm afraid I don't have...

I have some integration tests that require a backing data store to be available. By default, I'd like only the "unit" tests to run, but I'd like this to be...

Miri emits colorful diagnostics only if it is connected to a TTY (we have had a bad time trying to implement `--color=always`). Since nextest launches tests in subprocesses and manages...

Is it possible with nextest to have tests that should abort? I'd like to have a better test suite for https://github.com/RalfJung/cargo-careful, but unfortunately the expected behavior I need to test...

enhancement

Trying to use `nextest` with `miri` I ran: ```sh cargo +nightly miri nextest ``` Which produces: ``` error: unexpected argument '--target-dir' ``` This led me to think there was some...

bug

## Problem `cargo nextest` fails as no subcommand is provided. ## Version `cargo-nextest-nextest 0.9.49` ## Use case When combined with `cargo watch` `nextest` is overly verbose: ```console $ cargo watch...

deferred

I see that here https://nexte.st/book/slow-tests.html - it is possible to set a limit for what is marked as slow. I think it would also be nice to show the slowest...

I've noticed something very weird recently. When running with `cargo nextest run`, the entire suite would pass with no issue: ``` Summary [ 85.492s] 292 tests run: 292 passed, 0...

enhancement
help wanted