From a58f09c00d43d50c642ba3cfa09251541e9cb1ab Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Mon, 28 Apr 2025 11:51:07 +0200 Subject: [PATCH] docs: always use nextest (#15957) Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com> Co-authored-by: Matthias Seitz --- README.md | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index aef7588100..abac066fd1 100644 --- a/README.md +++ b/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** >