oslo.config/tox.ini
Petr Blaho b416b5d011 Changes imports order to pass H305, enables check
Changes imports order to pass H305 check with hacking 0.9.x
Removes H305 check from ignore line in tox.ini

Change-Id: I47bbe74f4178f46ea21fc37b69f53ea2d148a65e
2014-07-09 08:01:21 -04:00

29 lines
543 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}
[testenv:docs]
commands = python setup.py build_sphinx
[flake8]
show-source = True
exclude = .tox,dist,doc,*.egg,build
builtins = _