Merge "Display coverage report"

This commit is contained in:
Zuul 2024-02-07 07:14:04 +00:00 committed by Gerrit Code Review
commit f0c7eca61b
2 changed files with 6 additions and 2 deletions

View File

@ -4,4 +4,4 @@ source = oslo_privsep
omit = oslo_privsep/tests/*
[report]
ignore-errors = True
ignore_errors = True

View File

@ -33,13 +33,17 @@ commands =
sphinx-build -W --keep-going -b html doc/source doc/build/html
[testenv:cover]
deps = {[testenv]deps}
coverage
setenv =
PYTHON=coverage run --source $project --parallel-mode
PYTHON=coverage run --source oslo_privsep --parallel-mode
commands =
coverage erase
stestr run {posargs}
coverage combine
coverage html -d cover
coverage xml -o cover/coverage.xml
coverage report --show-missing
[flake8]
# E123, E125 skipped as they are invalid PEP-8.