Skip to content

Commit c55eb1d

Browse files
committed
Change .travis.yml
1 parent 21a348f commit c55eb1d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Diff for: .travis.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
language: python
22
python:
3-
- "2.6"
4-
- "2.7"
53
- "3.2"
64
- "3.3"
75
- "3.4"
86
- "3.5"
9-
install: "pip install pytest pytest-cov"
7+
install:
8+
- if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then travis_retry pip install coverage==3.7.1; fi
9+
- if [ "$TRAVIS_PYTHON_VERSION" != "3.2" ]; then travis_retry pip install coverage; fi
10+
- "pip install pytest pytest-cov"
1011
script: py.test --doctest-modules --cov ./

0 commit comments

Comments
 (0)