cd7584f6cc
When We do not ignore E123 and E125,there are several problems. They are more accordant with OpenStack Style Guidelines。 Change-Id: I714a5f0e5eb4690008255ade1746a3fbe61bdea8
42 lines
1.1 KiB
INI
42 lines
1.1 KiB
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = py27,pep8
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
install_command = pip install -U {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}
|
|
|
|
[flake8]
|
|
max-line-length = 100
|
|
show-source = True
|
|
# H233: Python 3.x incompatible use of print operator
|
|
# H236: Python 3.x incompatible __metaclass__, use six.add_metaclass()
|
|
# E302: expected 2 blank linee
|
|
# E303: too many blank lines (2)
|
|
# H404: multi line docstring should start without a leading new line
|
|
# H405: multi line docstring summary not separated with an empty line
|
|
ignore = H233,H236,E302,E303,H404,H405
|
|
builtins = _
|
|
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build
|