re-enable travis tests on Python 2.6
This commit is contained in:
parent
a659c25c54
commit
ff1c30807e
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue