diff --git a/ci/test-nightly.sh b/ci/test-nightly.sh index 96912d9bf5..1a87c5b107 100755 --- a/ci/test-nightly.sh +++ b/ci/test-nightly.sh @@ -13,7 +13,7 @@ _() { } # Uncomment this to run nightly test suit -# _ cargo test --verbose --features=unstable -- --test-threads=1 +# _ cargo test --all --verbose --features=unstable -- --test-threads=1 cargo_install_unless() { declare crate=$1 diff --git a/ci/test-stable-perf.sh b/ci/test-stable-perf.sh index fc9881b3ac..2e0f3e546f 100755 --- a/ci/test-stable-perf.sh +++ b/ci/test-stable-perf.sh @@ -24,7 +24,7 @@ source ./target/perf-libs/env.sh FEATURES=bpf_c,cuda,erasure,chacha _ cargo build --all --verbose --features="$FEATURES" -_ cargo test --verbose --features="$FEATURES" --lib -- --nocapture --test-threads=1 +_ cargo test --all --verbose --features="$FEATURES" --lib -- --nocapture --test-threads=1 # Run integration tests serially for test in tests/*.rs; do diff --git a/ci/test-stable.sh b/ci/test-stable.sh index e0480e62d0..b1defd9cfd 100755 --- a/ci/test-stable.sh +++ b/ci/test-stable.sh @@ -24,7 +24,7 @@ if [[ $(ulimit -n) -lt $maxOpenFds ]]; then fi _ cargo build --all --verbose -_ cargo test --verbose --lib -- --nocapture --test-threads=1 +_ cargo test --all --verbose --lib -- --nocapture --test-threads=1 # Run integration tests serially for test in tests/*.rs; do