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