aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml20
1 files changed, 12 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml
index b70ce55b..fe46c7d3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,11 +1,15 @@
language: python
-python:
- - 2.6
- - 2.7
- - 3.2
- - 3.3
+python: 2.7
+env:
+ - TOX_ENV=py26
+ - TOX_ENV=py27
+ - TOX_ENV=py32
+ - TOX_ENV=py33
+ - TOX_ENV=docs
+ - TOX_ENV=pep8
+
install:
- - pip install pytest flake8
+ - pip install tox
+
script:
- - py.test
- - flake8 .
+ - tox -e $TOX_ENV