From 04d647f2188a84973a98790fd4a8c020b3e24127 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 7 Aug 2016 20:37:01 +0200 Subject: [PATCH] Actually we can build libs with cargo-test and bins with cargo-build --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 81d79be1..c992d7ef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,12 +34,11 @@ script: [[ -d "$1" ]] && cd "$1" && { - travis-cargo -q build && { if [[ $(echo "$1" | grep lib) ]]; then travis-cargo -q test else - true + travis-cargo -q build fi } && cd -