Fix total values when ignore regex used #176
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Expected Behavior:
The report should display the total values (stmts, miss, and cover), calculated for all files excluding those specified by the ignore_regex.
Actual Behavior:
Previously, when using ignore_regex to exclude files, the report's total values were incorrect. The values remained the same whether the ignore_regex argument was passed or not.
Steps to Reproduce:
~/pycobertura > pycobertura show --ignore-regex ".*Main|.*ISorted" --format markdown tests/cobertura.xml
Report Before Fix:
Changes:
Result:
After the fix, the total values are now calculated correctly, reflected by the following report, generated with the same command.
Report After Fix: