aodh/tox.ini
Julien Danjou b12335501a Remove Folsom support
This also fix a new bug that make the test fail for our nova notifier.

Change-Id: I8b5172d482bc57a12eac76aa1c754ef306a32f60
Signed-off-by: Julien Danjou <julien@danjou.info>
2013-04-10 16:27:18 +02:00

51 lines
1.6 KiB
INI

[tox]
envlist = py26,py27,pep8,hacking
[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 =
nosetests --no-path-adjustment --where=../nova_tests
nosetests --no-path-adjustment {posargs}
sitepackages = False
[testenv:cover]
commands = nosetests --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 --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:docs]
deps = -r{toxinidir}/tools/test-requires
-r{toxinidir}/tools/pip-requires
sphinxcontrib-httpdomain
commands = python setup.py build_sphinx
[testenv:venv]
deps = -r{toxinidir}/tools/test-requires
-r{toxinidir}/tools/pip-requires
sphinxcontrib-httpdomain
commands = {posargs}
[testenv:pyflakes]
deps = -r{toxinidir}/tools/test-requires
-r{toxinidir}/tools/pip-requires
pyflakes
commands = python tools/flakes.py ceilometer