0ee399a828
Blacklist those warnings that occur frequently for followup patches. Fixup the rest and enable gating on those. Change-Id: I79f0ff1c16d9cb7f07cc99382c2a383e2fa532fc
39 lines
900 B
INI
39 lines
900 B
INI
[tox]
|
|
envlist = py26,py27,pep8
|
|
|
|
[testenv]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
setuptools_git>=0.4
|
|
commands = {envpython} run_tests.py
|
|
{envpython} run_tests.py --test-config=etc/tests/xml.localhost.test.conf
|
|
python setup.py testr --slowest
|
|
|
|
[tox:jenkins]
|
|
sitepackages = True
|
|
downloadcache = ~/cache/pip
|
|
|
|
[testenv:pep8]
|
|
commands = flake8
|
|
|
|
[testenv:cover]
|
|
basepython = python2.7
|
|
commands =
|
|
{envpython} run_tests.py --group=does_not_exist
|
|
coverage erase
|
|
python setup.py testr --coverage
|
|
coverage run -a run_tests.py
|
|
coverage html
|
|
coverage report
|
|
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[flake8]
|
|
show-source = True
|
|
ignore = E125,F401,F403,F811,F821,F841,H102,H103,H201,H23,H301,H306,H401,H402,H403,H404,H702,H703
|
|
builtins = _
|
|
exclude=.venv,.tox,dist,doc,openstack,*egg,rsdns,tools
|