Add standard code coverage configuration file

Add the .coveragerc configuration consistent with other projects,
specifically to define including branch = True and omit including
tests in the coverage reports

Change-Id: I5d18b10a46a7149b1187ab830ce7520d0aa3c6dc
This commit is contained in:
Ronald Bradford 2015-10-05 13:16:29 -04:00
parent 65f83aef83
commit 494e35bf66
1 changed files with 8 additions and 0 deletions

8
.coveragerc Normal file
View File

@ -0,0 +1,8 @@
[run]
branch = True
source = pbr
omit = pbr/tests/*,pbr/openstack/*
[report]
ignore_errors = True
precision = 2