summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.travis.yml4
-rw-r--r--appveyor.yml4
2 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index af5254cff2..2018417265 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -13,8 +13,8 @@ before_script:
- env
script:
- - cargo build --all --verbose
- - cargo test --all --verbose
+ - cargo build --verbose
+ - cargo test --verbose
# Format only on nightly, since that is where rustfmt-nightly compiles
- if [ "${TRAVIS_RUST_VERSION}" = "nightly" ] && [ "${TRAVIS_OS_NAME}" = "linux" ]; then
export LD_LIBRARY_PATH=$(rustc --print sysroot)/lib:$LD_LIBRARY_PATH
diff --git a/appveyor.yml b/appveyor.yml
index a7668d4c00..7161c2a028 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -43,8 +43,8 @@ install:
# This is the "test phase", tweak it as you see fit
test_script:
- - cargo build --all --target %TARGET%
- - cargo test --all --target %TARGET%
+ - cargo build --target %TARGET%
+ - cargo test --target %TARGET%
# Cache build binaries for faster builds next time
cache: