d609177328
Currently, running ``tox -e cover`` errors out and does not generate the correct coverage report. The problem is caused by (a) a typo in ``tox.ini``, and (b) a mix up between ``kolla_kubernetes`` vs. ``kolla-kubernetes`` in .coveragerc and setup.cfg. This causes the coverage report to not properly pick up the module. This patch set addresses the problem. Change-Id: I0a10c0eb563968f4b88a816276455a6afcf5df80 Closes-Bug: #1650266
8 lines
109 B
INI
8 lines
109 B
INI
[run]
|
|
branch = True
|
|
source = kolla_kubernetes
|
|
omit = kolla_kubernetes/tests/*
|
|
|
|
[report]
|
|
ignore_errors = True
|