summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authormakefu <root@pigstarter.de>2013-09-03 01:17:20 +0200
committermakefu <root@pigstarter.de>2013-09-03 01:17:20 +0200
commitf1aa5719a09662af20ecc98cb8c0669ff31b1781 (patch)
tree6f67aa96b3471d23eac17cccf9318e50f3abeba4 /.travis.yml
parentc88aaed89c05e88f769a3c3918228537e7af59de (diff)
set correct return code for travis
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml9
1 files changed, 5 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index e52f08cd..a7569c36 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,10 +1,11 @@
notifications:
irc: "chat.freenode.net#krebs_incoming"
-branches:
- only:
- - master
-script: "make -C util test"
+
+script: "make -C util test | grep -q '^not ok' && exit 1"
python:
- "3.3"
before_install:
- sudo apt-get install bc -qq
+branches:
+ only:
+ - master