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: I9c7cdd807ebaaa5ade07be5421063530a5bc6976
This commit is contained in:
Ronald Bradford 2015-10-02 09:09:41 -04:00
parent 20eeeabd7a
commit 645169d2ed
1 changed files with 8 additions and 0 deletions

8
.coveragerc Normal file
View File

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