From abab181984e81e89a1924d2736ecbdc86d765d7c Mon Sep 17 00:00:00 2001 From: Philipp Hansch Date: Fri, 14 Dec 2018 21:47:02 +0100 Subject: [PATCH] Make integration tests fail on 'E0463' --- ci/integration-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/integration-tests.sh b/ci/integration-tests.sh index 75decab940e..bf43d5b6811 100755 --- a/ci/integration-tests.sh +++ b/ci/integration-tests.sh @@ -21,7 +21,7 @@ function check() { # run clippy on a project, try to be verbose and trigger as many warnings as possible for greater coverage RUST_BACKTRACE=full cargo clippy --all-targets --all-features -- --cap-lints warn -W clippy::pedantic -W clippy::nursery &> clippy_output cat clippy_output - ! cat clippy_output | grep -q "internal compiler error\|query stack during panic" + ! cat clippy_output | grep -q "internal compiler error\|query stack during panic\|E0463" if [[ $? != 0 ]]; then return 1 fi