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 959191a commit 44dbe94Copy full SHA for 44dbe94
.travis.yml
@@ -1,18 +1,24 @@
1
+sudo: false
2
+
3
language: python
-python:
- - "2.6"
4
- - "2.7"
5
- - "3.5"
6
- - "3.6"
+matrix:
+ include:
7
+ - python: 3.6
8
+ env: TOXENV=py36
9
+ - python: 3.5
10
+ env: TOXENV=py35
11
+ - python: 2.7
12
+ env: TOXENV=py27
13
+ - python: 2.6
14
+ env: TOXENV=py26
15
16
17
install:
18
- pip install tox coveralls
-# command to run tests
19
20
script:
21
tox
-env:
- - TOXENV=py26
- - TOXENV=py27
- - TOXENV=py35
- - TOXENV=py36
22
23
after_success:
24
coveralls
0 commit comments