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

For the most part `cargo nextest` is interchangeable with `cargo test`, but not when swapping one out for the other with `cargo-hack`. For example, the following error is seen when...

Bumps [indicatif](https://github.com/console-rs/indicatif) from 0.16.2 to 0.17.0. Release notes Sourced from indicatif's releases. 0.17.0 indicatif is one of the most popular terminal progress bar libraries in the Rust ecosystem. More than...

dependencies

The status reporter (`nextest-runner/src/reporter.rs`) is the one major component of nextest for which there isn't as much coverage as one would ideally want to have. Ensure it's tested so that...

Currently, nextest runs every test in its own process. Should running tests within the same process be supported? * [ ] How should test binaries be marked this way? `package.metadata`...

enhancement
help wanted

I have a use case that is maybe half a hack. ``` > cd $WORKSPACE > cargo build # Builds all binaries > cargo test # Some tests use some...

Cargo profiles have the [`inherits`](https://doc.rust-lang.org/cargo/reference/profiles.html#custom-profiles) setting which lets some profiles inherit from others. Nextest profiles should have the `inherits` setting as well. Steps to do: * Add "inherits" to the...

enhancement
good first issue

first off, really like this so far. would it be possible to group related tests? right now tests are output in the order the run(i assume), which means that they...

enhancement

Nextest [reserves the "default-"](https://nexte.st/book/configuration.html#profiles) namespace for profiles. Produce a warning if an unknown profile name starting with "default-" is encountered. This will involve: 1. looking through [`default-config.toml`](https://github.com/nextest-rs/nextest/blob/main/nextest-runner/default-config.toml) to gather the...

enhancement
good first issue

This might be useful for larger deployments. Need to see whether it makes sense to automatically update to the specific version -- that might be "too much" for us to...

enhancement

Hi all! I'm a big fan of what this project is doing. I noticed when trying to integrate this into https://github.com/vectordotdev/vector that it fails to run test binaries built from...

help wanted