summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2014-11-30 08:18:57 +0100
committerAndi Albrecht <albrecht.andi@gmail.com>2014-11-30 08:18:57 +0100
commit6cc6c10a3bef97ea45b37f8b4c79cc8da9661a99 (patch)
tree4c1235701d11568d4bc04eb53a63c63ec4d57c8d
parentdb8927ec1564b7b2d69fd004b0c7d533c859e586 (diff)
downloadsqlparse-6cc6c10a3bef97ea45b37f8b4c79cc8da9661a99.tar.gz
Add Python3.4 to tox.ini.
-rw-r--r--tox.ini11
1 files changed, 10 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index e0931b6..e797ca9 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist=py26,py27,py32,py33,pypy
+envlist=py26,py27,py32,py33,py34,pypy
[testenv]
deps=
@@ -26,3 +26,12 @@ commands=
cp -r {toxinidir}/tests/ tests/
2to3 -w --no-diffs -n tests/
py.test --cov={envdir}/lib/python3.3/site-packages/sqlparse/ tests
+
+[testenv:py34]
+changedir={envdir}
+commands=
+ sqlformat --version # Sanity check.
+ rm -rf tests/
+ cp -r {toxinidir}/tests/ tests/
+ 2to3 -w --no-diffs -n tests/
+ py.test --cov={envdir}/lib/python3.4/site-packages/sqlparse/ tests