diff --git a/.travis.yml b/.travis.yml index 49db146..14b4298 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,10 +8,10 @@ install: # Only track coverage using the 2.7 job script: - - if [[ $TRAVIS_PYTHON_VERSION != 2.7 ]]; then nosetests - - if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then nosetests --with-coverage + - if [[ $TRAVIS_PYTHON_VERSION != 2.7 ]]; then nosetests; fi + - if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then nosetests --with-coverage; fi after_success: - - if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then coveralls + - if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then coveralls; fi sudo: false