From 4f3f662cfe939d6c21d2da9ea4e85cee173b88ef Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Tue, 24 Sep 2019 21:00:10 -0700 Subject: [PATCH] Remove local_cluster tests from stable-perf job, removee other tests from local-cluster job (#6067) (#6084) automerge --- 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 7c345078ac..9ab1c7438d 100755 --- a/ci/test-stable.sh +++ b/ci/test-stable.sh @@ -79,12 +79,12 @@ test-stable-perf) # Run root package library tests _ cargo +"$rust_stable" build --tests --bins ${V:+--verbose} - _ cargo +"$rust_stable" test --manifest-path=core/Cargo.toml ${V:+--verbose} $maybeCuda -- --nocapture + _ cargo +"$rust_stable" test --all --manifest-path=core/Cargo.toml ${V:+--verbose} $maybeCuda --exclude solana-local-cluster -- --nocapture ;; test-local-cluster) echo "Executing $testName" _ cargo +"$rust_stable" build --release --tests --bins ${V:+--verbose} - _ cargo +"$rust_stable" test --release --manifest-path=local_cluster/Cargo.toml ${V:+--verbose} -- --nocapture + _ cargo +"$rust_stable" test --release --package solana-local-cluster ${V:+--verbose} -- --nocapture exit 0 ;; *)