From 9f38b86df89c9fc29b07ae1bce468e319113bc81 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Sat, 17 Nov 2018 15:37:07 -0800 Subject: [PATCH] Revert "Temporarily disable clippy" This reverts commit ca12faca9c70a06421033ce53b48eb8a78d4a5fb. --- 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 41c1076712..5d2b219697 100755 --- a/ci/test-stable.sh +++ b/ci/test-stable.sh @@ -14,7 +14,7 @@ _() { _ cargo fmt -- --check _ cargo build --verbose _ cargo test --verbose --lib -_ cargo clippy -- --deny=warnings || true +_ cargo clippy -- --deny=warnings # 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