b9f1746643
Currently, we are overriding 'install_command' to use 'pip'. This is considered poor behavior and 'python -m pip' should be used instead: https://snarky.ca/why-you-should-use-python-m-pip/ It turns out that this is the the default value provided by tox: https://tox.readthedocs.io/en/latest/config.html#conf-install_command So we can remove the line and simply use the default value. openstack-discuss thread http://lists.openstack.org/pipermail/openstack-discuss/2020-April/014237.html Bumping requirements and l-c with: keystoneauth1 3.18.0 alembic 0.9.6 pika 0.10.0 (necessary for installation) Change-Id: I849342bd077ab2f8bbda4e0a228c308eb7a4908b
115 lines
3.4 KiB
INI
115 lines
3.4 KiB
INI
[tox]
|
||
minversion = 3.1.0
|
||
envlist = py3,pep8,functional-py36
|
||
ignore_basepython_conflict=true
|
||
|
||
[testenv]
|
||
basepython = python3
|
||
usedevelop = True
|
||
deps =
|
||
-c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
|
||
-r{toxinidir}/requirements.txt
|
||
-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]
|
||
commands = {posargs}
|
||
|
||
[testenv:api-ref]
|
||
whitelist_externals = bash
|
||
commands =
|
||
sphinx-build -W -b html -d api-ref/build/doctrees api-ref/source api-ref/build/html
|
||
|
||
[testenv:releasenotes]
|
||
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
||
|
||
[testenv:cover]
|
||
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]
|
||
commands =
|
||
flake8 ironic_inspector
|
||
doc8 README.rst CONTRIBUTING.rst doc/source
|
||
|
||
[testenv:functional-py36]
|
||
commands =
|
||
python3 -m ironic_inspector.test.functional {posargs}
|
||
|
||
[testenv:genconfig]
|
||
envdir = {toxworkdir}/venv
|
||
commands = oslo-config-generator --config-file {toxinidir}/tools/config-generator.conf
|
||
|
||
[testenv:genpolicy]
|
||
sitepackages = False
|
||
envdir = {toxworkdir}/venv
|
||
commands = oslopolicy-sample-generator --config-file {toxinidir}/tools/policy-generator.conf
|
||
|
||
[testenv:genstates]
|
||
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.
|
||
# [H210] Require ‘autospec’, ‘spec’, or ‘spec_set’ in mock.patch/mock.patch.object calls
|
||
# [H904] Delay string interpolations at logging calls.
|
||
enable-extensions=H106,H203,H204,H205,H210,H904
|
||
import-order-style = pep8
|
||
application-import-names = ironic_inspector
|
||
|
||
[hacking]
|
||
import_exceptions = ironic_inspector.common.i18n
|
||
|
||
[testenv:docs]
|
||
setenv = PYTHONHASHSEED=0
|
||
sitepackages = False
|
||
deps = -r{toxinidir}/test-requirements.txt
|
||
commands =
|
||
sphinx-build -W -b html doc/source doc/build/html
|
||
|
||
[testenv:pdf-docs]
|
||
whitelist_externals = make
|
||
deps = {[testenv:docs]deps}
|
||
commands =
|
||
sphinx-build -b latex doc/source doc/build/pdf
|
||
make -C doc/build/pdf
|
||
|
||
[testenv:lower-constraints]
|
||
deps =
|
||
-c{toxinidir}/lower-constraints.txt
|
||
-r{toxinidir}/test-requirements.txt
|
||
-r{toxinidir}/requirements.txt
|
||
|
||
[testenv:bandit]
|
||
deps = -r{toxinidir}/test-requirements.txt
|
||
commands = bandit -r ironic_inspector -x test -n 5 -ll -c tools/bandit.yml
|
||
|
||
# This environment can be used to quickly validate that all needed system
|
||
# packages required to successfully execute test targets are installed
|
||
[testenv:bindep]
|
||
# Do not install any requirements. We want this to be fast and work even if
|
||
# system dependencies are missing, since it's used to tell you what system
|
||
# dependencies are missing! This also means that bindep must be installed
|
||
# separately, outside of the requirements files.
|
||
deps = bindep
|
||
commands = bindep test
|
||
|