From 86b76639accfbab7755f687142699c3461c30d53 Mon Sep 17 00:00:00 2001 From: Ronald Bradford Date: Thu, 1 Oct 2015 09:35:20 -0400 Subject: [PATCH] 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: I02ba7efe7e2de15fb68fae8d6c187065ac3c60ee --- .coveragerc | 8 ++++++++ .gitignore | 1 + tox.ini | 2 +- 3 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 .coveragerc diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 00000000..3240e0fa --- /dev/null +++ b/.coveragerc @@ -0,0 +1,8 @@ +[run] +branch = True +source = oslo_config +omit = oslo_config/tests/* + +[report] +ignore_errors = True +precision = 2 diff --git a/.gitignore b/.gitignore index bc7f2824..03377e81 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ ChangeLog *.log .tox .coverage +cover oslo.config.egg-info/ build/ doc/build/ diff --git a/tox.ini b/tox.ini index a483a64b..8670ed22 100644 --- a/tox.ini +++ b/tox.ini @@ -14,7 +14,7 @@ commands = flake8 [testenv:cover] setenv = VIRTUAL_ENV={envdir} commands = - python setup.py testr --coverage + python setup.py test --coverage --coverage-package-name=oslo_config --testr-args='{posargs}' [testenv:venv] commands = {posargs}