bifrost/tox.ini
gengchc2 2599d4f5cb Update flake8 ignore list
In hacking >= 0.10.0, there is no E123 and E125, so this commit to
delete them.

Change-Id: I746dbd89d43b202927a54b0fd78fb8e045a1416c
2016-09-28 14:12:11 +08:00

37 lines
978 B
INI

[tox]
minversion = 1.6
envlist = py34,py27,docs,pep8
skipsdist = True
[testenv]
usedevelop = True
install_command = pip install -U -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages}
setenv =
VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = python setup.py test --slowest --testr-args='{posargs}'
[testenv:pep8]
commands = flake8
[testenv:venv]
commands = {posargs}
[testenv:cover]
commands = python setup.py test --coverage --testr-args='{posargs}'
[testenv:docs]
commands = python setup.py build_sphinx
[testenv:debug]
commands = oslo_debug_helper {posargs}
[testenv:releasenotes]
commands = sphinx-build -a -E -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
[flake8]
show-source = True
ignore = F403,H102,H303
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build