From 7fe50d6402cc867ab9058b61c71f011cf9d023a2 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Fri, 16 Nov 2018 19:27:12 -0800 Subject: [PATCH] Temporarily disable clippy --- 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 304de44f6..b29ee3e58 100755 --- a/ci/test-stable.sh +++ b/ci/test-stable.sh @@ -27,7 +27,7 @@ maybe_install() { _ 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 @@ -39,7 +39,7 @@ done # Run native program's tests for program in programs/native/*; do echo --- "$program" - ( + ( set -x cd "$program" cargo test --verbose