From fbd44640e6a44df0b6705e78b642eb0aa511584f Mon Sep 17 00:00:00 2001 From: Marc Abramowitz Date: Mon, 9 Feb 2015 16:29:46 -0800 Subject: [PATCH] .travis.yml: Only do coveralls on newest python Testing theory that it has to do with different python version subjobs completing in different orders and the last one wins. --- .travis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 39804b63..85163056 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,9 @@ os: - linux - osx +env: + global: + - NEWEST_PYTHON=3.4 language: python python: - 2.6 @@ -13,5 +16,4 @@ python: script: - make after_success: - - pip install python-coveralls - - coveralls + - if [[ $TRAVIS_PYTHON_VERSION == $NEWEST_PYTHON ]]; then pip install python-coveralls && coveralls; fi