Remove local_cluster tests from stable-perf job, removee other tests from local-cluster job (#6067)

This commit is contained in:
carllin 2019-09-24 19:05:25 -07:00 committed by Michael Vines
parent f2f041bb7c
commit 229836511d
1 changed files with 2 additions and 2 deletions

View File

@ -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
;;
*)