From 6fa907d2df812c73f9e9a0e949e680e57b99ec43 Mon Sep 17 00:00:00 2001 From: Richard Newman Date: Mon, 20 Feb 2017 10:58:56 -0800 Subject: [PATCH] Simplify .travis.yml to use `cargo test --all`. --- .travis.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index 61a5714f..3f46c017 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,3 @@ language: rust script: - - cargo build --verbose - - cargo test --verbose - - cargo test --verbose -p edn - - cargo test --verbose -p mentat_parser_utils - - cargo test --verbose -p mentat_core - - cargo test --verbose -p mentat_db - - cargo test --verbose -p mentat_query - - cargo test --verbose -p mentat_query_parser - - cargo test --verbose -p mentat_query_algebrizer - - cargo test --verbose -p mentat_query_translator - - cargo test --verbose -p mentat_sql - - cargo test --verbose -p mentat_tx_parser + - cargo test --verbose --all