From 3314c5fda7925fe14e1e64bbdcd064a8e6f90a11 Mon Sep 17 00:00:00 2001 From: Philipp Hansch Date: Wed, 16 May 2018 19:54:30 +0200 Subject: [PATCH] No -e in integration_tests Because that makes the script stop early and not print any clippy error output. --- ci/base-tests.sh | 1 - ci/integration-tests.sh | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/ci/base-tests.sh b/ci/base-tests.sh index e72bd155cec..daec740212d 100755 --- a/ci/base-tests.sh +++ b/ci/base-tests.sh @@ -1,7 +1,6 @@ set -ex PATH=$PATH:./node_modules/.bin remark -f *.md > /dev/null -set -e cargo build --features debugging cargo test --features debugging mkdir -p ~/rust/cargo/bin diff --git a/ci/integration-tests.sh b/ci/integration-tests.sh index 577fec96db7..61a3348f04f 100755 --- a/ci/integration-tests.sh +++ b/ci/integration-tests.sh @@ -1,4 +1,4 @@ -set -ex +set -x cargo install --force echo "Running integration test for crate ${INTEGRATION}"