From ff1c30807ed420649855c53a740c161962962c56 Mon Sep 17 00:00:00 2001 From: Alan Hamlett Date: Wed, 26 Sep 2018 20:36:10 -0700 Subject: [PATCH] re-enable travis tests on Python 2.6 --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index fca9764..c426ebb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: python python: - #- "2.6" + - "2.6" - "2.7" - "3.3" - "3.4" @@ -9,12 +9,12 @@ python: # command to install dependencies install: - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then travis_retry pip install unittest2; fi + - if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then travis_retry pip install coveralls; fi - travis_retry pip install -r dev-requirements.txt - - travis_retry pip install coveralls # use new travis-ci container-based infrastructure sudo: false # command to run tests script: nosetests # command to run after tests after_success: - - coveralls + - if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then coveralls; fi