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

automerge
This commit is contained in:
mergify[bot]
2019-09-24 21:00:10 -07:00
committed by Grimes
parent 1942c47d73
commit 4f3f662cfe

View File

@ -79,12 +79,12 @@ test-stable-perf)
# Run root package library tests # Run root package library tests
_ cargo +"$rust_stable" build --tests --bins ${V:+--verbose} _ 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) test-local-cluster)
echo "Executing $testName" echo "Executing $testName"
_ cargo +"$rust_stable" build --release --tests --bins ${V:+--verbose} _ 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 exit 0
;; ;;
*) *)