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.
56 lines
1.6 KiB
56 lines
1.6 KiB
[tox] |
|
minversion = 3.18.0 |
|
envlist = py3,pep8 |
|
ignore_basepython_conflict = True |
|
|
|
[testenv] |
|
basepython = python3 |
|
install_command = pip install {opts} {packages} |
|
deps = |
|
-c{env:TOX_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt} |
|
-r{toxinidir}/test-requirements.txt |
|
-r{toxinidir}/requirements.txt |
|
setenv = VIRTUAL_ENV={envdir} |
|
DISCOVER_DIRECTORY=blazarclient/tests |
|
commands = stestr run --slowest '{posargs}' |
|
|
|
[testenv:pep8] |
|
commands = flake8 |
|
|
|
[flake8] |
|
show-source = true |
|
builtins = _ |
|
# Ignore currently failing tests for now |
|
# W504 skipped because it is overeager and unnecessary |
|
ignore = E265,H405,W504 |
|
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg |
|
|
|
[hacking] |
|
import_exceptions = blazarclient.i18n |
|
|
|
[testenv:venv] |
|
deps = |
|
-c{env:TOX_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt} |
|
-r{toxinidir}/requirements.txt |
|
-r{toxinidir}/doc/requirements.txt |
|
commands = {posargs} |
|
|
|
[testenv:cover] |
|
allowlist_externals = find |
|
setenv = |
|
{[testenv]setenv} |
|
PYTHON=coverage run --source blazarclient --parallel-mode |
|
commands = |
|
coverage erase |
|
find . -type f -name "*.pyc" -delete |
|
stestr run {posargs} |
|
coverage combine |
|
coverage html -d cover |
|
coverage xml -o cover/coverage.xml |
|
coverage report |
|
|
|
[testenv:releasenotes] |
|
deps = |
|
-c{env:TOX_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt} |
|
-r{toxinidir}/doc/requirements.txt |
|
commands = sphinx-build -a -W -E -d releasenotes/build/doctrees --keep-going -b html releasenotes/source releasenotes/build/html
|
|
|