docs: always use nextest (#15957)

Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com>
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
DaniPopes
2025-04-28 11:51:07 +02:00
committed by GitHub
parent 58ec4b1153
commit a58f09c00d

View File

@@ -104,18 +104,14 @@ cd reth
Next, run the tests:
```sh
# Without Geth
cargo test --workspace
cargo nextest run --workspace
# With Ethereum Foundation tests
#
# Note: Requires cloning https://github.com/ethereum/tests
#
# cd testing/ef-tests && git clone https://github.com/ethereum/tests ethereum-tests
cargo test -p ef-tests --features ef-tests
# Run the Ethereum Foundation tests
make ef-tests
```
We recommend using [`cargo nextest`](https://nexte.st/) to speed up testing. With nextest installed, simply substitute `cargo test` with `cargo nextest run`.
We highly recommend using [`cargo nextest`](https://nexte.st/) to speed up testing.
Using `cargo test` to run tests may work fine, but this is not tested and does not support more advanced features like retries for spurious failures.
> **Note**
>