c3ee071d73
Per http://wiki.openstack.org/ProjectTestingInterface we enable all of the commands except build_sphinx because we do not have any sphinx documentation as of yet. Includes babel support though there are no properly internationalized strings just yet. Change-Id: Iae6e6b3f9e605106f4575196fa5527d2187255df
44 lines
924 B
INI
44 lines
924 B
INI
[tox]
|
|
envlist = py26,py27,pep8
|
|
|
|
[testenv]
|
|
setenv = LANG=en_US.UTF-8
|
|
LANGUAGE=en_US:en
|
|
LC_ALL=C
|
|
deps=
|
|
testtools
|
|
testrepository
|
|
coverage
|
|
babel
|
|
commands=
|
|
bash -c 'if [ ! -d ./.testrepository ] ; then testr init ; fi'
|
|
bash -c 'testr run --parallel {posargs} ; RET=$? echo "Slowest Tests" ; testr slowest && exit $RET'
|
|
|
|
[testenv:py26]
|
|
deps=
|
|
testtools
|
|
testrepository
|
|
coverage
|
|
babel
|
|
discover
|
|
argparse
|
|
|
|
[pep8]
|
|
ignore = E125
|
|
|
|
[testenv:pep8]
|
|
deps = pep8
|
|
commands =
|
|
pep8 --repeat --show-source --exclude=.venv,.tox,doc .
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:cover]
|
|
setenv = PYTHON=coverage run --source diskimage_builder
|
|
commands = bash -c 'if [ ! -d ./.testrepository ] ; then testr init ; fi'
|
|
bash -c 'testr run --parallel ; RET=$? ; coverage combine ; coverage html -d ./cover $OMIT && exit $RET'
|
|
|
|
[tox:jenkins]
|
|
downloadcache = ~/cache/pip
|