17a1d72b1c
Change-Id: I3914db6e5c4f279f2aeae051fd6a1a4254f554c9
114 lines
2.8 KiB
INI
114 lines
2.8 KiB
INI
[tox]
|
|
minversion = 3.1
|
|
envlist = pep8
|
|
skipsdist = True
|
|
ignore_basepython_conflict = True
|
|
|
|
[testenv]
|
|
skip_install = True
|
|
install_command = python -m pip install {opts} {packages}
|
|
basepython = python3
|
|
passenv =
|
|
OS_*
|
|
pip: PIP_INSTALL
|
|
setenv =
|
|
VIRTUAL_ENV={envdir}
|
|
LANG=en_US.UTF-8
|
|
LANGUAGE=en_US:en
|
|
LC_ALL=C
|
|
OS_LOG_CAPTURE={env:OS_LOG_CAPTURE:true}
|
|
OS_STDOUT_CAPTURE={env:OS_STDOUT_CAPTURE:true}
|
|
OS_STDERR_CAPTURE={env:OS_STDERR_CAPTURE:true}
|
|
pip: PIP_INSTALL={env:PIP_INSTALL:true}
|
|
deps =
|
|
-r{toxinidir}/test-requirements.txt
|
|
pip: {toxinidir}
|
|
|
|
commands = stestr run {posargs}
|
|
stestr slowest
|
|
|
|
[testenv:pep8]
|
|
commands =
|
|
flake8
|
|
|
|
[testenv:build]
|
|
deps =
|
|
pbr
|
|
ruamel.yaml
|
|
ansible-core
|
|
|
|
commands =
|
|
python {toxinidir}/tools/build.py
|
|
ansible --version
|
|
ansible-galaxy collection build --force {toxinidir} --output-path {toxinidir}/build_artifact
|
|
/bin/bash {toxinidir}/tools/check-import.sh {toxinidir}
|
|
|
|
[testenv:linters]
|
|
passenv = *
|
|
deps =
|
|
{[testenv]deps}
|
|
commands =
|
|
{[testenv:build]commands}
|
|
{[testenv:pep8]commands}
|
|
ansible --version
|
|
/bin/bash {toxinidir}/tools/run-ansible-sanity.sh {toxinidir}
|
|
|
|
[testenv:linters-2.9]
|
|
passenv = {[testenv:linters]passenv}
|
|
commands = {[testenv:linters]commands}
|
|
deps =
|
|
-r{toxinidir}/test-requirements-2.9.txt
|
|
|
|
[testenv:linters-2.11]
|
|
passenv = {[testenv:linters]passenv}
|
|
commands = {[testenv:linters]commands}
|
|
deps =
|
|
-r{toxinidir}/test-requirements-2.11.txt
|
|
|
|
[testenv:venv]
|
|
deps =
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands = {posargs}
|
|
|
|
[flake8]
|
|
# W503 Is supposed to be off by default but in the latest pycodestyle isn't.
|
|
# Also, both openstacksdk and Donald Knuth disagree with the rule. Line
|
|
# breaks should occur before the binary operator for readability.
|
|
# H4 are rules for docstrings. Maybe we should clean them?
|
|
# E501,E402,H301 are ignored so we can import the existing
|
|
# modules unchanged and then clean them in subsequent patches.
|
|
ignore = W503,H4,E501,E402,H301
|
|
show-source = True
|
|
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build,ansible_collections
|
|
|
|
[testenv:ansible]
|
|
# Need to pass some env vars for the Ansible playbooks
|
|
passenv =
|
|
HOME
|
|
USER
|
|
ANSIBLE_*
|
|
deps =
|
|
{[testenv]deps}
|
|
commands =
|
|
/bin/bash {toxinidir}/ci/run-ansible-tests-collection.sh -e {envdir} {posargs}
|
|
|
|
# PIP job runs with Ansible-2.9
|
|
[testenv:ansible-pip]
|
|
deps =
|
|
-r{toxinidir}/test-requirements-2.9.txt
|
|
{toxinidir}
|
|
passenv = {[testenv:ansible]passenv}
|
|
commands = {[testenv:ansible]commands}
|
|
|
|
[testenv:ansible-2.9]
|
|
deps =
|
|
-r{toxinidir}/test-requirements-2.9.txt
|
|
passenv = {[testenv:ansible]passenv}
|
|
commands = {[testenv:ansible]commands}
|
|
|
|
[testenv:ansible-2.11]
|
|
deps =
|
|
-r{toxinidir}/test-requirements-2.11.txt
|
|
passenv = {[testenv:ansible]passenv}
|
|
commands = {[testenv:ansible]commands}
|