re-enable travis tests on Python 2.6

This commit is contained in:
Alan Hamlett 2018-09-26 20:36:10 -07:00
parent a659c25c54
commit ff1c30807e

View file

@ -1,6 +1,6 @@
language: python language: python
python: python:
#- "2.6" - "2.6"
- "2.7" - "2.7"
- "3.3" - "3.3"
- "3.4" - "3.4"
@ -9,12 +9,12 @@ python:
# command to install dependencies # command to install dependencies
install: 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 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 -r dev-requirements.txt
- travis_retry pip install coveralls
# use new travis-ci container-based infrastructure # use new travis-ci container-based infrastructure
sudo: false sudo: false
# command to run tests # command to run tests
script: nosetests script: nosetests
# command to run after tests # command to run after tests
after_success: after_success:
- coveralls - if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then coveralls; fi