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 f8c8768 commit 54cda0eCopy full SHA for 54cda0e
.travis.yml
@@ -1,27 +1,31 @@
1
language: python
2
3
+branches:
4
+ except:
5
+ - gh-pages
6
+
7
+cache:
8
+ directories:
9
+ - "${HOME}/virtualenv"
10
+ - "${TRAVIS_BUILD_DIR}/.tox"
11
12
python:
13
- 2.6
14
- 2.7
15
- 3.3
16
- 3.4
17
+ - 3.5
18
+ - 3.6
19
- pypy
20
-env:
- - PYTEST=2.3.5
- - PYTEST=2.4.2
- - PYTEST=2.5.2
- - PYTEST=2.6.4
- - PYTEST=2.7.0
- - PYTEST=2.7.1
- - PYTEST=2.7.2
- - PYTEST=2.7.3
- - PYTEST=2.8.0
21
+matrix:
22
+ fast_finish: true
23
+ allow_failures:
24
+ - python: 3.6
25
26
install:
- - pip install -q pytest==$PYTEST
- - pip install -q -r requirements/main.txt
- - pip install -q -e .
27
+ - pip install tox
28
+ - pip install tox-travis
29
30
script:
- - py.test
31
+ - tox
0 commit comments