From 24137744daeec37aa490f0395fd2e4185a0a3462 Mon Sep 17 00:00:00 2001 From: ygd58 Date: Thu, 26 Mar 2026 07:47:59 +0100 Subject: [PATCH] fix: correct integration tests command in README The previous command used `cargo run` which fails with: error: a bin target must be available for `cargo run` The correct command is `cargo test -p integration_tests`. Also removed the unnecessary `cd integration_tests` step since the -p flag targets the package directly from the repo root. Fixes #313 --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index a08b81fb..399f408c 100644 --- a/README.md +++ b/README.md @@ -135,9 +135,8 @@ RISC0_DEV_MODE=1 cargo test --release ```bash export NSSA_WALLET_HOME_DIR=$(pwd)/integration_tests/configs/debug/wallet/ -cd integration_tests # RISC0_DEV_MODE=1 skips proof generation; RUST_LOG=info enables runtime logs -RUST_LOG=info RISC0_DEV_MODE=1 cargo run $(pwd)/configs/debug all +RUST_LOG=info RISC0_DEV_MODE=1 cargo test -p integration_tests --release -- --nocapture ``` # Run the sequencer and node