We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a29e3fd commit 9ee8e9fCopy full SHA for 9ee8e9f
.travis.yml
@@ -1,15 +1,17 @@
1
language: python
2
python:
3
- - 3.4
4
- - 3.3
5
- - 3.2
6
- - 2.7
7
- - 2.6
+ - "3.4"
+ - "3.3"
+ - "3.2"
+ - "2.7"
+ - "2.6"
8
install:
9
+ - if ! [[ $TRAVIS_PYTHON_VERSION > '2.6' ]]; then pip install unittest2 ; fi
10
- pip install -r dev_requirements.txt
11
- python setup.py develop
12
script:
- - python -m unittest discover tests
13
+ - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then python -m unittest2.__main__ discover -v tests ; fi
14
+ - if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then python -m unittest discover -v tests ; fi
15
notifications:
16
email:
17
- [email protected]
0 commit comments