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 6919730 commit 64b1a73Copy full SHA for 64b1a73
.travis.yml
@@ -1,11 +1,13 @@
1
language: python
2
-python:
3
- - "2.6"
4
- - "2.7"
5
- - "3.6"
6
- - "pypy"
+matrix:
+ include:
+ - python: 2.6
+ env: TOXENV=py26
+ - python: 3.6
7
+ env: TOXENV=py36
8
+ - python: pypy
9
+ env: TOXENV=pypy
10
install:
- - python setup.py install
- - pip install -r test_requirements.txt
11
+ - pip install tox
12
script:
- - python setup.py test
13
+ - tox -e $TOXENV
tox.ini
@@ -0,0 +1,8 @@
+[tox]
+envlist = py27,py36,pypy
+skip_missing_interpreters = true
+
+[testenv]
+deps = -rtest_requirements.txt
+commands = python setup.py test
0 commit comments