From b6f8005f66aae7d6e12bfea0e56e80ad49ba27db Mon Sep 17 00:00:00 2001 From: Elis Hirwing Date: Mon, 30 Oct 2017 17:25:28 +0100 Subject: [PATCH] Do not fallback to true if test fails --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 13bac42..7058048 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,5 +32,5 @@ install: script: # Run tests - - test -n "$EVM_EMACS" && make test || true - - test -n "$INTEGRATION" && make integration || true + - if test -n "$EVM_EMACS"; then make test; fi + - if test -n "$INTEGRATION"; then make integration; fi