diff options
| -rw-r--r-- | tox.ini | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -1,5 +1,5 @@ [tox] -envlist=py24,py25,py26,py27,pypy,py32 +envlist=py24,py25,py26,py27,py32,py33,pypy [testenv] deps= @@ -17,3 +17,12 @@ commands= cp -r {toxinidir}/tests/ tests/ 2to3 -w --no-diffs -n tests/ py.test --cov={envdir}/lib/python3.2/site-packages/sqlparse/ tests + +[testenv:py33] +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.3/site-packages/sqlparse/ tests |
