From e63336189f0488f94817b8e742fcb7996de5ebc4 Mon Sep 17 00:00:00 2001 From: Sergio Chouhy Date: Fri, 10 Oct 2025 17:51:22 -0300 Subject: [PATCH] fix integration tests --- ci_scripts/test-ubuntu.sh | 10 +++++----- integration_tests/Cargo.toml | 1 + 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/ci_scripts/test-ubuntu.sh b/ci_scripts/test-ubuntu.sh index 65d219e..2e6e07f 100755 --- a/ci_scripts/test-ubuntu.sh +++ b/ci_scripts/test-ubuntu.sh @@ -4,16 +4,16 @@ curl -L https://risczero.com/install | bash /home/runner/.risc0/bin/rzup install source env.sh -RISC0_DEV_MODE=1 cargo test --release --features no_docker +RISC0_DEV_MODE=1 cargo test --release --features no-docker cd integration_tests export NSSA_WALLET_HOME_DIR=$(pwd)/configs/debug/wallet/ export RUST_LOG=info -cargo run --features no_docker $(pwd)/configs/debug all +cargo run $(pwd)/configs/debug all echo "Try test valid proof at least once" -cargo run --features no_docker $(pwd)/configs/debug test_success_private_transfer_to_another_owned_account +cargo run $(pwd)/configs/debug test_success_private_transfer_to_another_owned_account echo "Continuing in dev mode" -RISC0_DEV_MODE=1 cargo run --features no_docker $(pwd)/configs/debug all +RISC0_DEV_MODE=1 cargo run $(pwd)/configs/debug all cd .. -cd nssa/program_methods/guest && cargo test --release --features no_docker +cd nssa/program_methods/guest && cargo test --release diff --git a/integration_tests/Cargo.toml b/integration_tests/Cargo.toml index db2dfeb..70fa527 100644 --- a/integration_tests/Cargo.toml +++ b/integration_tests/Cargo.toml @@ -36,3 +36,4 @@ path = "../common" [dependencies.nssa] path = "../nssa" +features = ["no-docker"]