diff --git a/.coveragerc b/.coveragerc index 1f7318b..4ed8f62 100644 --- a/.coveragerc +++ b/.coveragerc @@ -1,7 +1,8 @@ [run] branch = True -source = concurrency -omit = concurrency/tests/*,concurrency/openstack/* +source = oslo_concurrency +omit = oslo_concurrency/tests/* [report] ignore_errors = True +precision = 2 diff --git a/.gitignore b/.gitignore index 1399c98..ed88334 100644 --- a/.gitignore +++ b/.gitignore @@ -23,6 +23,7 @@ pip-log.txt # Unit test / coverage reports .coverage +cover .tox nosetests.xml .testrepository @@ -48,4 +49,4 @@ ChangeLog # Editors *~ -.*.swp \ No newline at end of file +.*.swp diff --git a/tox.ini b/tox.ini index a9409af..dc2d2c1 100644 --- a/tox.ini +++ b/tox.ini @@ -33,7 +33,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_concurrency --testr-args='{posargs}' [flake8] show-source = True