From 77ea4cd285f11b9c26c174f05649da56258b1979 Mon Sep 17 00:00:00 2001 From: Jack May Date: Fri, 22 Feb 2019 14:40:02 -0800 Subject: [PATCH] Reapply dependency Band-aid to make CI happy --- ci/test-stable.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/test-stable.sh b/ci/test-stable.sh index a5bc09fee2..7ad16db3ae 100755 --- a/ci/test-stable.sh +++ b/ci/test-stable.sh @@ -71,8 +71,8 @@ else fi # Run root package library tests -_ cargo build ${V:+--verbose} --features="$ROOT_FEATURES" -_ cargo test --lib ${V:+--verbose} --features="$ROOT_FEATURES" -- --nocapture --test-threads=1 +_ cargo build --all ${V:+--verbose} --features="$ROOT_FEATURES" +_ cargo test --all --lib ${V:+--verbose} --features="$ROOT_FEATURES" -- --nocapture --test-threads=1 # Run root package integration tests for test in tests/*.rs; do @@ -80,7 +80,7 @@ for test in tests/*.rs; do test=${test%.rs} # basename x .rs ( export RUST_LOG="$test"=trace,$RUST_LOG - _ cargo test ${V:+--verbose} --features="$ROOT_FEATURES" --test="$test" \ + _ cargo test --all ${V:+--verbose} --features="$ROOT_FEATURES" --test="$test" \ -- --test-threads=1 --nocapture ) done