Update travis integration tests to tool_lints

`clippy_pedantic` -> `clippy::pedantic`
`clippy_nursery` -> `clippy::nursery`
This commit is contained in:
Philipp Krones 2018-09-03 10:52:42 +02:00 committed by GitHub
parent 2b7a5304f6
commit 4139207956
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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