292c168d9e
During pycodestyle fix [0], the max code complexity is temporarily increased to 18. This patch is a follow up to restore previous complexity (value 15), and refactor code causing C901. [0] https://review.openstack.org/#/c/567066 Story: #2001985 Task: #19604 Change-Id: Id64c31c449761024504284dcadd2b6c9f4a97f00
98 lines
2.6 KiB
INI
98 lines
2.6 KiB
INI
[tox]
|
|
envlist = py3,py27,pep8,functional
|
|
|
|
[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}
|
|
deps =
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands =
|
|
stestr run {posargs}
|
|
setenv =
|
|
VIRTUAL_ENV={envdir}
|
|
PYTHONDONTWRITEBYTECODE=1
|
|
TZ=UTC
|
|
TESTS_DIR=./ironic_inspector/test/unit/
|
|
passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
|
|
|
|
[testenv:venv]
|
|
basepython = python3
|
|
commands = {posargs}
|
|
|
|
[testenv:releasenotes]
|
|
basepython = python3
|
|
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
|
|
|
[testenv:cover]
|
|
basepython = python3
|
|
setenv =
|
|
{[testenv]setenv}
|
|
PYTHON=coverage run --branch --omit='*test*' --source ironic_inspector --parallel-mode
|
|
commands =
|
|
coverage erase
|
|
stestr run {posargs}
|
|
coverage combine
|
|
coverage report -m --omit='*test*' --fail-under 90
|
|
coverage html -d ./cover --omit='*test*'
|
|
|
|
[testenv:pep8]
|
|
basepython = python3
|
|
commands =
|
|
flake8 ironic_inspector
|
|
doc8 README.rst CONTRIBUTING.rst doc/source
|
|
|
|
[testenv:functional]
|
|
basepython = python2.7
|
|
commands =
|
|
python -m ironic_inspector.test.functional
|
|
|
|
[testenv:functional-py35]
|
|
basepython = python3
|
|
commands =
|
|
python3 -m ironic_inspector.test.functional
|
|
|
|
[testenv:genconfig]
|
|
basepython = python3
|
|
envdir = {toxworkdir}/venv
|
|
commands = oslo-config-generator --config-file config-generator.conf
|
|
|
|
[testenv:genpolicy]
|
|
basepython = python3
|
|
sitepackages = False
|
|
envdir = {toxworkdir}/venv
|
|
commands = oslopolicy-sample-generator --config-file {toxinidir}/policy-generator.conf
|
|
|
|
[testenv:genstates]
|
|
basepython = python3
|
|
deps = {[testenv]deps}
|
|
commands = {toxinidir}/tools/states_to_dot.py -f {toxinidir}/doc/source/images/states.svg --format svg
|
|
|
|
[flake8]
|
|
max-complexity=15
|
|
# [H106] Don't put vim configuration in source files.
|
|
# [H203] Use assertIs(Not)None to check for None.
|
|
# [H204] Use assert(Not)Equal to check for equality.
|
|
# [H205] Use assert(Greater|Less)(Equal) for comparison.
|
|
# [H904] Delay string interpolations at logging calls.
|
|
enable-extensions=H106,H203,H204,H205,H904
|
|
import-order-style = pep8
|
|
application-import-names = ironic_inspector
|
|
|
|
[hacking]
|
|
import_exceptions = ironicclient.exceptions,ironic_inspector.common.i18n
|
|
|
|
[testenv:docs]
|
|
basepython = python3
|
|
setenv = PYTHONHASHSEED=0
|
|
sitepackages = False
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
commands =
|
|
python setup.py build_sphinx
|
|
|
|
[testenv:lower-constraints]
|
|
basepython = python3
|
|
deps =
|
|
-c{toxinidir}/lower-constraints.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
-r{toxinidir}/requirements.txt
|