oslo.config/tox.ini
Davanum Srinivas 18601d3234 Bump hacking to 0.9.x series
In order to keep this patch to just a requirements bump, ignore new and
stricter hacking rules that are being triggered. Fixing up the code and
turning these on is out of scope of this patch and is for future patches.

Change-Id: I8f59083d1c0673b94fa94acb37f11a5dd0ee040d
2014-06-12 07:46:18 -04:00

27 lines
501 B
INI

[tox]
distribute = False
envlist = py33,py26,py27,pep8
[testenv]
setenv = VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = python setup.py testr --slowest --testr-args='{posargs}'
[testenv:pep8]
commands = flake8
[testenv:cover]
setenv = VIRTUAL_ENV={envdir}
commands =
python setup.py testr --coverage
[testenv:venv]
commands = {posargs}
[flake8]
show-source = True
ignore = H305
exclude = .tox,dist,doc,*.egg,build
builtins = _