diff options
author | makefu <root@pigstarter.de> | 2013-09-03 01:17:20 +0200 |
---|---|---|
committer | makefu <root@pigstarter.de> | 2013-09-03 01:17:20 +0200 |
commit | f1aa5719a09662af20ecc98cb8c0669ff31b1781 (patch) | |
tree | 6f67aa96b3471d23eac17cccf9318e50f3abeba4 | |
parent | c88aaed89c05e88f769a3c3918228537e7af59de (diff) |
set correct return code for travis
-rw-r--r-- | .travis.yml | 9 |
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 |