From 2e41db8c70e66fa9a73f34a8d89beb8b84b6b06f Mon Sep 17 00:00:00 2001 From: Chris Wong <lambda.fairy@gmail.com> Date: Sun, 9 Dec 2018 10:46:05 +1300 Subject: [PATCH] Run all the tests at the beginning --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 682d284..d7df365 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,10 +9,9 @@ script: - (cd maud && cargo build --features="iron") # The compiletest tests require a single version of the crate to be built # or else there will be errors in picking the right version - so we test now - - cargo test --test warnings + - cargo test --all - (cd maud && cargo build --features="rocket") - (cd maud && cargo build --features="actix-web") - - cargo test --all --exclude warnings - (cd benchmarks && cargo bench --no-run) - | CLIPPY_STATUS=0