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 b0c357b commit caa854aCopy full SHA for caa854a
.travis.yml
@@ -1,20 +1,13 @@
1
+sudo: false
2
language: python
-python: 2.7
3
+python:
4
+ - 2.7
5
+ - 3.5
6
os:
7
- linux
-env:
- - TOX_ENV=py27-lint
- - TOX_ENV=py27-unit
8
- - TOX_ENV=py35-mypy
9
-# - TOX_ENV=py34-lint
10
-# - TOX_ENV=py33-lint
11
-# - TOX_ENV=py34-unit
12
-# - TOX_ENV=py33-unit
13
14
install:
15
- - pip install tox
16
-
17
-script: tox -e $TOX_ENV
18
+ - pip install tox-travis
+script: tox
19
notifications:
20
email: false
tox.ini
@@ -3,6 +3,10 @@
envlist = py27-lint, py27-unit, py35-mypy
skipsdist = True
+[tox:travis]
+2.7 = py27
+3.5 = py35-mypy
+
[testenv]
deps = -rrequirements.txt
0 commit comments