diff options
author | Ronald Bradford <ronald.bradford@gmail.com> | 2015-10-01 10:01:01 -0400 |
---|---|---|
committer | Ronald Bradford <ronald.bradford@gmail.com> | 2015-10-08 17:23:20 -0400 |
commit | 5f273a1161f1b6642224dfeb14d8e6f183f89b8d (patch) | |
tree | 64f563aee77d852dbdd8e54692f056d5f638c5d2 | |
parent | 24d89500807e6efb0ddcde5baa191e10287001e3 (diff) | |
download | oslo-utils-5f273a1161f1b6642224dfeb14d8e6f183f89b8d.tar.gz |
Fix coverage configuration and execution
A number of configuration errors prevent the successful creation of code
coverage. This corrects the .coveragerc source/omit setup and the tox
package name generation.
http://lists.openstack.org/pipermail/openstack-dev/2015-October/076193.html
Change-Id: Ic7bd03b1411a92c04dc6ea8c5995f88d1738a156
-rw-r--r-- | .coveragerc | 5 | ||||
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | tox.ini | 4 |
3 files changed, 6 insertions, 4 deletions
diff --git a/.coveragerc b/.coveragerc index 5b553d6..20f1132 100644 --- a/.coveragerc +++ b/.coveragerc @@ -1,7 +1,8 @@ [run] branch = True -source = utils -omit = utils/tests/*,utils/openstack/* +source = oslo_utils +omit = oslo_utils/tests/* [report] ignore_errors = True +precision = 2 @@ -23,6 +23,7 @@ pip-log.txt # Unit test / coverage reports .coverage +cover .tox nosetests.xml .testrepository @@ -26,7 +26,7 @@ commands = {posargs} commands = python setup.py build_sphinx [testenv:cover] -commands = python setup.py testr --coverage --testr-args='{posargs}' +commands = python setup.py test --coverage --coverage-package-name=oslo_utils --testr-args='{posargs}' [flake8] ignore = E123,H405 @@ -39,4 +39,4 @@ exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,__in # this also means that pip-missing-reqs must be installed separately, outside # of the requirements.txt files deps = pip_missing_reqs -commands = pip-missing-reqs -d --ignore-module=oslo_utils* --ignore-module=pkg_resources --ignore-file=oslo_utils/test.py --ignore-file=oslo_utils/tests/* oslo_utils
\ No newline at end of file +commands = pip-missing-reqs -d --ignore-module=oslo_utils* --ignore-module=pkg_resources --ignore-file=oslo_utils/test.py --ignore-file=oslo_utils/tests/* oslo_utils |