diff options
-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 |