Skip to content

Commit 8bae14b

Browse files
Update .travis.yml
1 parent d3f3a88 commit 8bae14b

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

Diff for: .travis.yml

+12-7
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
language: python
22
python:
3+
- "2.6"
4+
- "2.7"
35
- "3.2"
46
- "3.3"
57
- "3.4"
68
- "3.5"
9+
- "3.5-dev" # 3.5 development branch
710
- "3.6"
8-
- "3.6-dev"
9-
10-
install:
11-
- if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then travis_retry pip install coverage==3.7.1; fi
12-
- if [ "$TRAVIS_PYTHON_VERSION" != "3.2" ]; then travis_retry pip install coverage; fi
13-
- "pip install pytest pytest-cov"
14-
script: py.test --doctest-modules --cov ./
11+
- "3.6-dev" # 3.6 development branch
12+
- "3.7-dev" # 3.7 development branch
13+
- "nightly"
14+
15+
install:
16+
- pip install -r requirements.txt
17+
18+
script:
19+
- py.test

0 commit comments

Comments
 (0)