tripleo-repos/tox.ini
Douglas e012eb0194 Adds tripleo-yum-config module
This patch adds tripleo-yum-config python module to assist
on yum configuration file updates. It supports yum repo, module and
global configuration updates. It also provides a new cli to be used
as standalone module.

Change-Id: I38317f3aabc0c78b3125a8405e824eb5ebf8f183
2021-07-01 18:24:54 -03:00

50 lines
1.3 KiB
INI

[tox]
minversion = 3.1.1
skipsdist = True
envlist = py,pep8
[testenv]
usedevelop = True
basepython = python3
setenv = VIRTUAL_ENV={envdir}
deps =
-c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
-r{toxinidir}/test-requirements.txt
-r{toxinidir}/requirements.txt
-r{toxinidir}/tripleo-get-hash/requirements.txt
-r{toxinidir}/tripleo-get-hash/test-requirements.txt
commands =
stestr run --slowest {posargs}
stestr run --combine --slowest {posargs} --test-path ./tripleo-get-hash/test --top-dir ./tripleo-get-hash
stestr run --combine --slowest {posargs} --test-path ./tripleo-yum-config/test --top-dir ./tripleo-yum-config
[testenv:venv]
commands = {posargs}
[testenv:docs]
deps = -c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
-r{toxinidir}/doc/requirements.txt
whitelist_externals =
rm
commands =
rm -rf doc/build
sphinx-build -W --keep-going -b html doc/source doc/build/html
[testenv:pep8]
deps = flake8
commands = flake8
[testenv:cover]
setenv =
PYTHON=coverage run --source tripleo_repos --parallel-mode
commands =
stestr run {posargs}
coverage combine
coverage html -d cover
coverage xml -o cover/coverage.xml
[flake8]
ignore = H803
show-source = True
exclude = .tox,dist,doc,*.egg,build