From 41392079564d2fa7afd982db42e38429665d9e5e Mon Sep 17 00:00:00 2001 From: Philipp Krones Date: Mon, 3 Sep 2018 10:52:42 +0200 Subject: [PATCH] Update travis integration tests to tool_lints `clippy_pedantic` -> `clippy::pedantic` `clippy_nursery` -> `clippy::nursery` --- 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 ac0d2f1614ba..18b91f6eae05 100755 --- a/ci/integration-tests.sh +++ b/ci/integration-tests.sh @@ -9,7 +9,7 @@ cd checkout 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 + 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" if [[ $? != 0 ]]; then