From d6439a3415974ef11b66ca49ee1f1644f2a3bf1b Mon Sep 17 00:00:00 2001 From: MRain Date: Tue, 27 Feb 2024 12:35:42 -0500 Subject: [PATCH] temporarily use stable cargo for test --- scripts/run_tests.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/run_tests.sh b/scripts/run_tests.sh index ab7a81749..687df49a6 100755 --- a/scripts/run_tests.sh +++ b/scripts/run_tests.sh @@ -4,7 +4,7 @@ set -e # We want the code to panic if there is an integer overflow export RUSTFLAGS="-C overflow-checks=on" -cargo +nightly test --release -p jf-utils -- -Zunstable-options --report-time -cargo +nightly test --release -p jf-plonk --lib --bins -- -Zunstable-options --report-time -cargo +nightly test --release -p jf-primitives --features test-srs -- -Zunstable-options --report-time # enable test-srs feature for gen_srs_for_testing -cargo +nightly test --release -p jf-relation -- -Zunstable-options --report-time +cargo test --release -p jf-utils -- -Zunstable-options --report-time +cargo test --release -p jf-plonk --lib --bins -- -Zunstable-options --report-time +cargo test --release -p jf-primitives --features test-srs -- -Zunstable-options --report-time # enable test-srs feature for gen_srs_for_testing +cargo test --release -p jf-relation -- -Zunstable-options --report-time