]> git.lizzy.rs Git - rust.git/blobdiff - ci/integration-tests.sh
Auto merge of #3829 - mikerite:fix-double-parens-suggestions, r=flip1995
[rust.git] / ci / integration-tests.sh
index e786ac06104a7458ffc3dd786c9b29cd43deb7c8..1259c5e1d37892f8afdca72ade984611225fcd0e 100755 (executable)
@@ -1,5 +1,6 @@
 set -x
-cargo install --force
+rm ~/.cargo/bin/cargo-clippy
+cargo install --force --path .
 
 echo "Running integration test for crate ${INTEGRATION}"
 
@@ -7,18 +8,16 @@ git clone --depth=1 https://github.com/${INTEGRATION}.git checkout
 cd checkout
 
 function check() {
-  RUST_BACKTRACE=full cargo clippy --all &> clippy_output
+# 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"
+  ! cat clippy_output | grep -q "internal compiler error\|query stack during panic\|E0463"
   if [[ $? != 0 ]]; then
     return 1
   fi
 }
 
 case ${INTEGRATION} in
-  rust-lang/cargo)
-    check
-    ;;
   *)
     check
     ;;