From c45d4471a90600fe23b2a7924d180b4c879746af Mon Sep 17 00:00:00 2001 From: Nate Wolfe Date: Thu, 12 Feb 2015 17:12:05 -0800 Subject: [PATCH] (MAINT) Improve travisci file Add the :all test selector and set -e because they won't hurt, and we were bit by the lack of these in other projects recently. --- ext/travisci/test.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ext/travisci/test.sh b/ext/travisci/test.sh index db011da..96bf58f 100755 --- a/ext/travisci/test.sh +++ b/ext/travisci/test.sh @@ -1,3 +1,5 @@ #!/bin/bash -lein2 test +set -e + +lein2 test :all