We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3f3a88 commit 8bae14bCopy full SHA for 8bae14b
.travis.yml
@@ -1,14 +1,19 @@
1
language: python
2
python:
3
+ - "2.6"
4
+ - "2.7"
5
- "3.2"
6
- "3.3"
7
- "3.4"
8
- "3.5"
9
+ - "3.5-dev" # 3.5 development branch
10
- "3.6"
- - "3.6-dev"
-
-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 ./
+ - "3.6-dev" # 3.6 development branch
+ - "3.7-dev" # 3.7 development branch
+ - "nightly"
+
15
+install:
16
+ - pip install -r requirements.txt
17
18
+script:
19
+ - py.test
0 commit comments