summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2014-11-30 08:11:18 +0100
committerAndi Albrecht <albrecht.andi@gmail.com>2014-11-30 08:11:18 +0100
commitdb8927ec1564b7b2d69fd004b0c7d533c859e586 (patch)
treee090ffc53470c494e8db7ba19cba103695077a3b
parente06d87b3b6a7917e3c1124af41a3d65f116482ba (diff)
downloadsqlparse-db8927ec1564b7b2d69fd004b0c7d533c859e586.tar.gz
Revert travis.yml, add Python 3.4
-rw-r--r--.travis.yml22
1 files changed, 13 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml
index e2a3606..098eb14 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,11 +1,15 @@
language: python
-python:
- - "2.6"
- - "2.7"
- - "3.2"
- - "3.3"
- - "3.4"
- - "pypy"
+python: 2.7
+env:
+ - TOX_ENV=py26
+ - TOX_ENV=py27
+ - TOX_ENV=py32
+ - TOX_ENV=py33
+ - TOX_ENV=py34
+ - TOX_ENV=pypy
+before_install:
+ - sudo apt-get install pypy
install:
- - pip install pytest
-script: py.test
+ - pip install tox
+script:
+ - tox -e $TOX_ENV