You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.0 KiB
68 lines
2.0 KiB
[tox] |
|
minversion = 2.0 |
|
envlist = linters,py37 |
|
skipdist = True |
|
|
|
[testenv] |
|
usedevelop = True |
|
passenv = * |
|
setenv = |
|
# pip: Avoid 2020-01-01 warnings: https://github.com/pypa/pip/issues/6207 |
|
# paramiko CryptographyDeprecationWarning: https://github.com/ansible/ansible/issues/52598 |
|
PYTHONWARNINGS=ignore:DEPRECATION::pip._internal.cli.base_command,ignore::UserWarning |
|
PIP_DISABLE_PIP_VERSION_CHECK=1 |
|
commands = python setup.py test --slowest --testr-args='{posargs}' |
|
sitepackages = True |
|
deps = |
|
-c {env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt} |
|
-r {toxinidir}/requirements.txt |
|
-r {toxinidir}/test-requirements.txt |
|
whitelist_externals = bash |
|
|
|
[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 |
|
|
|
[testenv:debug] |
|
commands = oslo_debug_helper {posargs} |
|
|
|
[testenv:pep8] |
|
envdir = {toxworkdir}/linters |
|
commands = |
|
python -m pre_commit run flake8 -a |
|
|
|
[testenv:whitespace] |
|
envdir = {toxworkdir}/linters |
|
deps = {[testenv:linters]deps} |
|
commands = |
|
python -m pre_commit run trailing-whitespace -a |
|
|
|
[testenv:shebangs] |
|
envdir = {toxworkdir}/linters |
|
deps = {[testenv:linters]deps} |
|
commands = |
|
python -m pre_commit run check-executables-have-shebangs -a |
|
|
|
[testenv:linters] |
|
deps = |
|
-r {toxinidir}/requirements.txt |
|
-r {toxinidir}/test-requirements.txt |
|
commands = |
|
{[testenv:whitespace]commands} |
|
{[testenv:shebangs]commands} |
|
|
|
[testenv:cover] |
|
deps = |
|
-r {toxinidir}/requirements.txt |
|
-r {toxinidir}/test-requirements.txt |
|
commands = python setup.py test --coverage --testr-args='{posargs}' |
|
|
|
[testenv:lower-constraints] |
|
deps = |
|
-c{toxinidir}/lower-constraints.txt |
|
-r{toxinidir}/test-requirements.txt |
|
-r{toxinidir}/requirements.txt
|
|
|