7f638bb493
The repo is Python 3 now, so update hacking to version 3.0 which supports Python 3. Update local hacking check for new flake8 version. Blacklist: W504 line break after binary operator Fix: E741 ambiguous variable name E117 over-indented E305 expected 2 blank lines after class or function definition, found 1 F841 local variable 'e' is assigned to but never used W605 invalid escape sequence '\.' Change-Id: I99d574ca6569f1f177d2c5ce1011f269f4343619
129 lines
3.3 KiB
INI
129 lines
3.3 KiB
INI
[tox]
|
|
minversion = 3.1
|
|
envlist = py37,pep8
|
|
ignore_basepython_conflict = true
|
|
|
|
[testenv]
|
|
basepython = python3
|
|
setenv =
|
|
VIRTUAL_ENV={envdir}
|
|
passenv = OS_*
|
|
ZUUL_CACHE_DIR
|
|
REQUIREMENTS_PIP_LOCATION
|
|
install_command = pip install {opts} {packages}
|
|
deps =
|
|
-c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
|
|
-r{toxinidir}/test-requirements.txt
|
|
-r{toxinidir}/requirements.txt
|
|
commands = stestr run --slowest {posargs}
|
|
|
|
[testenv:pep8]
|
|
commands =
|
|
flake8
|
|
# run security linter
|
|
bandit -r oslo_messaging -x tests -n5
|
|
|
|
[testenv:cover]
|
|
setenv =
|
|
PYTHON=coverage run --source oslo_messaging --parallel-mode
|
|
commands =
|
|
stestr run --slowest {posargs}
|
|
coverage combine
|
|
coverage html -d cover
|
|
coverage report
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:docs]
|
|
whitelist_externals = rm
|
|
deps = -r{toxinidir}/doc/requirements.txt
|
|
commands =
|
|
rm -fr doc/build
|
|
sphinx-build -W --keep-going -b html doc/source doc/build/html
|
|
|
|
#
|
|
# The following functional test scenarios are defined for the
|
|
# testing of the messaging backends and to demonstrated the functiona
|
|
# correctness across driver combinations (e.g. RPC and Notify)
|
|
#
|
|
# RPC Notify
|
|
# -------- --------
|
|
# scenario01 rabbit rabbit
|
|
# scenario02 rabbit kafka
|
|
# scenario03 amqp rabbit
|
|
# scenario04 amqp kafka
|
|
#
|
|
[testenv:py36-func-scenario01]
|
|
basepython = python3.6
|
|
setenv =
|
|
{[testenv]setenv}
|
|
SCENARIO=scenario01
|
|
commands = {toxinidir}/tools/setup-scenario-env.sh stestr run --slowest {posargs:oslo_messaging.tests.functional}
|
|
|
|
[testenv:py36-func-scenario02]
|
|
basepython = python3.6
|
|
setenv =
|
|
{[testenv]setenv}
|
|
SCENARIO=scenario02
|
|
commands = {toxinidir}/tools/setup-scenario-env.sh stestr run --slowest {posargs:oslo_messaging.tests.functional}
|
|
|
|
[testenv:py36-func-scenario03]
|
|
basepython = python3.6
|
|
setenv =
|
|
{[testenv]setenv}
|
|
SCENARIO=scenario03
|
|
ENVNAME={envname}
|
|
WORKDIR={toxworkdir}
|
|
commands = {toxinidir}/tools/setup-scenario-env.sh stestr run --slowest {posargs:oslo_messaging.tests.functional}
|
|
|
|
[testenv:py36-func-scenario04]
|
|
basepython = python3.6
|
|
setenv =
|
|
{[testenv]setenv}
|
|
SCENARIO=scenario04
|
|
ENVNAME={envname}
|
|
WORKDIR={toxworkdir}
|
|
commands = {toxinidir}/tools/setup-scenario-env.sh stestr run --slowest {posargs:oslo_messaging.tests.functional}
|
|
|
|
[testenv:bandit]
|
|
# NOTE(kgiusti): This is required for the integration test job of the bandit
|
|
# project. Please do not remove.
|
|
commands = bandit -r oslo_messaging -x tests -n5
|
|
|
|
[flake8]
|
|
# E731 skipped as assign a lambda expression
|
|
|
|
show-source = True
|
|
enable-extensions = H203,H106
|
|
ignore = E731,H405,W504
|
|
exclude = .tox,dist,doc,*.egg,build,__init__.py
|
|
|
|
[hacking]
|
|
import_exceptions =
|
|
six.moves
|
|
|
|
[flake8:local-plugins]
|
|
extension =
|
|
O321 = checks:check_oslo_namespace_imports
|
|
O322 = checks:check_mock_imports
|
|
O324 = checks:CheckForLoggingIssues
|
|
paths = ./oslo_messaging/hacking
|
|
|
|
[testenv:releasenotes]
|
|
whitelist_externals = rm
|
|
commands =
|
|
rm -rf releasenotes/build
|
|
sphinx-build -a -E -W -d releasenotes/build/doctrees --keep-going -b html releasenotes/source releasenotes/build/html
|
|
deps = -r{toxinidir}/doc/requirements.txt
|
|
|
|
[testenv:bindep]
|
|
deps = bindep
|
|
commands = bindep {posargs}
|
|
|
|
[testenv:lower-constraints]
|
|
deps =
|
|
-c{toxinidir}/lower-constraints.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
-r{toxinidir}/requirements.txt
|