mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-11 00:08:13 -05:00
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:
14
README.md
14
README.md
@@ -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**
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user