aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2018-12-07 16:06:09 +0100
committerLibravatar Juan Aguilar <mhpoin@gmail.com>2018-12-07 19:41:48 +0100
commitd42c5c04aa26ca72ab84760b9425891f316bae0a (patch)
treebc0864544c07ad86e49af91850d133983c3cfc13 /.travis.yml
parent94db5b1cb6a99f46b05f4397e33a18e30409eba8 (diff)
downloadaskama-d42c5c04aa26ca72ab84760b9425891f316bae0a.tar.gz
askama-d42c5c04aa26ca72ab84760b9425891f316bae0a.tar.bz2
askama-d42c5c04aa26ca72ab84760b9425891f316bae0a.zip
Make testing all features actually fail the test job
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml3
1 files changed, 1 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 2e1e8ec..77f5fdf 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,8 +11,7 @@ before_script:
script:
- cargo test --all
- if [[ "${TRAVIS_RUST_VERSION}" == stable ]]; then
- cd testing && cargo test --features full;
- cargo fmt -- --check;
+ cd testing && cargo test --features full && cargo fmt -- --check;
fi
- if [[ "${TRAVIS_RUST_VERSION}" == nightly ]]; then
cd testing && cargo test --features with-rocket;