From d14ff94e05f3adf0287f0b62b1dd80ef14fbe046 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Wed, 16 Jul 2014 15:33:15 +0300 Subject: [PATCH] fix .travis.yml before ``` % travis lint .travis.yml Warnings for .travis.yml: [x] value for notifications section is empty, dropping [x] in notifications section: unexpected key on_success, dropping [x] in notifications section: unexpected key on_failure, dropping ``` now: ``` Hooray, .travis.yml looks valid :) ``` See also ProgVal/Supybot-plugins#217 --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index b55e2c0f3..596386f4e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,7 +17,6 @@ script: after_success: - if [ "$TRAVIS_PYTHON_VERSION" = "3.4" ]; then bash .travis.runonce.bash;fi notifications: - on_success: never - on_failure: never + email: false matrix: fast_finish: true