-
-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Labels
Description
I get different results depending on the formatter used, which is really strange.
E.g:
SimpleCov.formatter = SimpleCov::Formatter::CoberturaFormatter
Gives me: 561 / 713 LOC (78.68%) covered
SimpleCov.formatters = [
SimpleCov::Formatter::CoberturaFormatter,
SimpleCov::Formatter::HTMLFormatter
]
Gives: 573 / 708 LOC (80.93%) covered
Line Coverage: 80.93% (573 / 708)
Not specifying a formater at all results in:
Line Coverage: 82.16% (585 / 712)