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

This PR contains the following updates: | Update | Change | |---|---| | lockFileMaintenance | All locks refreshed | 🔧 This Pull Request updates lock files to use the latest...

dependencies

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [semver](https://togithub.com/dtolnay/semver) | dependencies | patch | `1.0.21` -> `1.0.22` | --- ### Release...

dependencies

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [clap](https://togithub.com/clap-rs/clap) | dev-dependencies | minor | `4.4.18` -> `4.5.1` | | [clap](https://togithub.com/clap-rs/clap) |...

dependencies

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [http](https://togithub.com/hyperium/http) | dependencies | major | `0.2.12` -> `1.1.0` | --- ### Release...

dependencies

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [supports-color](https://togithub.com/zkat/supports-color) | dependencies | major | `2.1.0` -> `3.0.0` | --- ### Release...

dependencies

With `cargo test -- -Z unstable-options --format json`, I seem to receive JSON lines as soon as a corresponding event is emitted. With `cargo nextest run --message-format libtest-json --color never...

Gated behind an environment variable for now. TODO: - [ ] Code to read test runs (probably in a separate PR) - [ ] Tests - [ ] Docs -...

Run code/script before any tests / after all the tests ## Usecases 1. Database creation / Database removal 2. Loading variables from external sources (ex. Hasicorp Vault) 3. Setting up...

enhancement
help wanted

code: `cargo add crossterm` ```rs #[test] fn t() { // both of these freeze cargo next-test run // crossterm::terminal::enable_raw_mode().unwrap(); // crossterm::cursor::position().unwrap(); } ```

- **Initial implementation:** #1086 - **Nextest version:** 0.9.65 and above - **Enable with:** Set `NEXTEST_EXPERIMENTAL_LIBTEST_JSON=1` in the environment Still to do before stabilizing the format: - [x] Include stderr and...

experimental