From b6da5a3f474ff38f8c9e06b56f7df77964fdac2f Mon Sep 17 00:00:00 2001 From: Rob Walker Date: Wed, 4 Sep 2019 17:01:38 -0700 Subject: [PATCH] build all tests (#5785) * build all tests * try again * try again --- ci/test-stable.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/test-stable.sh b/ci/test-stable.sh index d0f9657e3..a82b3aa83 100755 --- a/ci/test-stable.sh +++ b/ci/test-stable.sh @@ -32,7 +32,7 @@ case $testName in test-stable) echo "Executing $testName" - _ cargo +"$rust_stable" build --all ${V:+--verbose} + _ cargo +"$rust_stable" build --all --tests --bins ${V:+--verbose} _ cargo +"$rust_stable" test --all ${V:+--verbose} -- --nocapture ;; test-stable-perf) @@ -76,7 +76,7 @@ test-stable-perf) fi # Run root package library tests - _ cargo +"$rust_stable" build --all ${V:+--verbose} --features="$ROOT_FEATURES" + _ cargo +"$rust_stable" build --all --tests --bins ${V:+--verbose} --features="$ROOT_FEATURES" _ cargo +"$rust_stable" test --manifest-path=core/Cargo.toml ${V:+--verbose} --features="$ROOT_FEATURES" -- --nocapture ;; *)