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

Currently, nextest doesn't support Rust doctests. This is because doctests are not exposed in stable Rust the way regular test binaries are, and are instead treated as special by `cargo...

enhancement

Add filtering for packages (`-p` can be overloaded to mean this). This would accept the `package`, `deps` and `rdeps` functions, but not `test`. The point of this would be to...

A-filter-expressions

My next maybe weird feature request. This is somehow related to https://github.com/nextest-rs/nextest/issues/27 or at least could be a first step for it. ## My initial use case I have a...

Hi! Nextest looks pretty great! One common thing I have in many crates is running tests with different feature sets. Would be nice to be able to merge those tests...

We could try to parse the output as the format used by cargo test, and just fall back to printing out the whole test output if it fails to parse.

enhancement

This needs to be done with a little care: * The initial, simpler use requires keeping track of which Cargo arguments the build was run with -- this is relatively...

enhancement

The output should be similar to what cargo itself provides, complete with `--message-format json` and `--message-format json-render-status` options.

enhancement
help wanted

It cost me some time to find the default value, maybe add a tip

currently nextest supports progress bar, but I did not find a way to enable a log like below, it is an example made by hand: Finished test [unoptimized + debuginfo]...