90fbf3012b
Change-Id: Id7e009e3a9ed61e86c45c8e4839208ecfa30bd77
43 lines
1.1 KiB
INI
43 lines
1.1 KiB
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = py26,py27,pypy,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
|
|
# E123, E125 skipped as they are invalid PEP-8.
|
|
# 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 = E123,E125,H233,H236,E302,E303,H404,H405
|
|
builtins = _
|
|
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build
|