42ca96664e
Usage: tox hacking Once we have the source compliant we can merge this with the pep8 task. There is a known problem with stevedore's dynamic module loading. Change-Id: Ibfff87d85ecc81b1ce6dd994a135ab30b75d4d1e
53 lines
1.6 KiB
INI
53 lines
1.6 KiB
INI
[tox]
|
|
envlist = py26,py27,py26-folsom,py27-folsom,pep8
|
|
|
|
[testenv]
|
|
deps = -r{toxinidir}/tools/test-requires
|
|
-r{toxinidir}/tools/pip-requires
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
NOSE_WITH_OPENSTACK=1
|
|
NOSE_OPENSTACK_COLOR=1
|
|
NOSE_OPENSTACK_RED=0.05
|
|
NOSE_OPENSTACK_YELLOW=0.025
|
|
NOSE_OPENSTACK_SHOW_ELAPSED=1
|
|
commands = {toxinidir}/wrap_nosetests.sh --no-path-adjustment []
|
|
sitepackages = False
|
|
|
|
[testenv:livedb]
|
|
setenv=CEILOMETER_TEST_LIVE=1
|
|
|
|
[testenv:cover]
|
|
commands = {toxinidir}/wrap_nosetests.sh --no-path-adjustment --with-coverage --cover-erase --cover-package=ceilometer --cover-inclusive []
|
|
|
|
[testenv:pep8]
|
|
deps = pep8==1.3.3
|
|
commands =
|
|
pep8 --repeat --ignore=E125 --show-source ceilometer setup.py bin/ceilometer-agent-central bin/ceilometer-agent-compute bin/ceilometer-collector bin/ceilometer-api tests
|
|
|
|
[testenv:hacking]
|
|
deps = pep8==1.3.3
|
|
commands =
|
|
python tools/hacking.py --doctest
|
|
python tools/hacking.py --ignore=E12,E711,E721,E712,N403,N404 --show-source \
|
|
--exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg .
|
|
python tools/hacking.py --ignore=E12,E711,E721,E712,N403,N404 --show-source \
|
|
--filename=ceilometer* bin
|
|
|
|
[testenv:venv]
|
|
deps = -r{toxinidir}/tools/test-requires
|
|
-r{toxinidir}/tools/pip-requires
|
|
sphinxcontrib-httpdomain
|
|
commands = {posargs}
|
|
|
|
[testenv:py26-folsom]
|
|
deps = -r{toxinidir}/tools/test-requires-folsom
|
|
-r{toxinidir}/tools/pip-requires
|
|
|
|
[testenv:py27-folsom]
|
|
deps = -r{toxinidir}/tools/test-requires-folsom
|
|
-r{toxinidir}/tools/pip-requires
|
|
|
|
[testenv:pyflakes]
|
|
deps = pyflakes
|
|
commands = python tools/flakes.py ceilometer
|