]> git.lizzy.rs Git - rust.git/blobdiff - ci/integration-tests.sh
tests: fix formatting and update test output
[rust.git] / ci / integration-tests.sh
index 9019a6830e6386d5efa8ed4353c1ac8e0b75e46f..bf43d5b6811aaa980cdb7519ed048a3639323d9e 100755 (executable)
@@ -21,16 +21,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
     ;;