summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2015-10-26 08:39:08 +0100
committerAndi Albrecht <albrecht.andi@gmail.com>2015-10-26 08:39:08 +0100
commit8bfdaf3cc37ffe48a60c7f4ee5d5e99d0b07e696 (patch)
tree34b71a14b9dfd6e2e482829bd04217b2154afcea
parent3d4eab73c73632665bf81b1268ecd7c53e3c9368 (diff)
downloadsqlparse-8bfdaf3cc37ffe48a60c7f4ee5d5e99d0b07e696.tar.gz
Simplify tox.ini.
-rw-r--r--tox.ini47
1 files changed, 0 insertions, 47 deletions
diff --git a/tox.ini b/tox.ini
index 6ea52fc..f4f7692 100644
--- a/tox.ini
+++ b/tox.ini
@@ -8,50 +8,3 @@ deps=
commands=
sqlformat --version # Sanity check.
py.test --cov=sqlparse/ tests
-
-[testenv:py32]
-deps=
- pytest
-changedir={envdir}
-commands=
- sqlformat --version # Sanity check.
- rm -rf tests/
- cp -r {toxinidir}/tests/ tests/
- 2to3 -w --no-diffs -n tests/
- py.test 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
-
-[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
-
-[testenv:py35]
-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.5/site-packages/sqlparse/ tests
-
-[testenv:pypy3]
-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}/site-packages/sqlparse/ tests