We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21a348f commit c55eb1dCopy full SHA for c55eb1d
.travis.yml
@@ -1,10 +1,11 @@
1
language: python
2
python:
3
- - "2.6"
4
- - "2.7"
5
- "3.2"
6
- "3.3"
7
- "3.4"
8
- "3.5"
9
-install: "pip install pytest pytest-cov"
+install:
+ - if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then travis_retry pip install coverage==3.7.1; fi
+ - if [ "$TRAVIS_PYTHON_VERSION" != "3.2" ]; then travis_retry pip install coverage; fi
10
+ - "pip install pytest pytest-cov"
11
script: py.test --doctest-modules --cov ./
0 commit comments