From d65c1c2b0dc1a789b6463fdaf680bd4b492f50c8 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Thu, 18 Feb 2016 23:23:05 -0800 Subject: [PATCH] Travis: only run coveralls on success --- .travis.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 01448f315c1..3e1c8869d8f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,9 +13,7 @@ matrix: cache: directories: - $HOME/.cache/pip -install: pip install -U tox +install: pip install -U tox coveralls language: python -script: - - tox - - pip install coveralls - - coveralls +script: tox +after_success: coveralls