2012-08-10 16:45:00 -07:00
|
|
|
[tox]
|
|
|
|
envlist = pep8, pyflakes
|
|
|
|
|
|
|
|
[tox:jenkins]
|
|
|
|
downloadcache = ~/cache/pip
|
|
|
|
|
2012-09-11 00:53:26 +02:00
|
|
|
[testenv]
|
|
|
|
deps = -r{toxinidir}/tools/pip-requires
|
|
|
|
-r{toxinidir}/tools/test-requires
|
|
|
|
|
2012-08-10 16:45:00 -07:00
|
|
|
[testenv:pep8]
|
|
|
|
deps = pep8==1.2
|
2012-11-20 11:46:32 -05:00
|
|
|
commands = pep8 --repeat --show-source --exclude=.venv,.tox,dist,doc,build,*egg .
|
2012-08-10 16:45:00 -07:00
|
|
|
|
|
|
|
[testenv:pyflakes]
|
|
|
|
deps = pyflakes
|
2012-11-10 15:42:17 -08:00
|
|
|
commands = pyflakes jenkins_jobs setup.py
|
2012-08-10 16:45:00 -07:00
|
|
|
|
2012-08-31 15:15:39 -07:00
|
|
|
[testenv:compare-xml-old]
|
2012-11-10 15:42:17 -08:00
|
|
|
commands = jenkins-jobs test -o .test/old/out/ .test/old/config/
|
2012-08-31 15:15:39 -07:00
|
|
|
|
|
|
|
[testenv:compare-xml-new]
|
2012-11-10 15:42:17 -08:00
|
|
|
commands = jenkins-jobs test -o .test/new/out/ .test/new/config/
|
2012-08-31 15:15:39 -07:00
|
|
|
|
2012-08-10 16:45:00 -07:00
|
|
|
[testenv:venv]
|
|
|
|
commands = {posargs}
|