Temporarily disable clippy

This commit is contained in:
Michael Vines
2018-11-16 19:27:12 -08:00
parent 97a0791f3f
commit ca12faca9c

View File

@ -14,7 +14,7 @@ _() {
_ cargo fmt -- --check
_ cargo build --verbose
_ cargo test --verbose --lib
_ cargo clippy -- --deny=warnings
_ cargo clippy -- --deny=warnings || true
# Run integration tests serially
for test in tests/*.rs; do
@ -26,7 +26,7 @@ done
# Run native program's tests
for program in programs/native/*; do
echo --- "$program"
(
(
set -x
cd "$program"
cargo test --verbose