mirror of
https://github.com/apache/impala.git
synced 2025-12-30 21:02:41 -05:00
20 lines
398 B
INI
20 lines
398 B
INI
[tox]
|
|
envlist=py24,py25,py26,py27,pypy,py32
|
|
|
|
[testenv]
|
|
deps=
|
|
pytest
|
|
pytest-cov
|
|
commands=
|
|
sqlformat --version # Sanity check.
|
|
py.test --cov=sqlparse/ tests
|
|
|
|
[testenv:py32]
|
|
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.2/site-packages/sqlparse/ tests
|