]> git.lizzy.rs Git - rust.git/blobdiff - ci/integration-tests.sh
Add `rustfmt::skip` to `double_parens` tests
[rust.git] / ci / integration-tests.sh
index 18b91f6eae05b7ff1c848ec196d18ad007b49fbf..1259c5e1d37892f8afdca72ade984611225fcd0e 100755 (executable)
@@ -11,16 +11,13 @@ 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
 }
 
 case ${INTEGRATION} in
-  rust-lang/cargo)
-    check
-    ;;
   *)
     check
     ;;