Combined view of instructions and branches report
Currently I have to switch the view between the two modes; it would be great they could be in the same table (i.e., another view option to have them both), just like the codecov.io report. It happened a few times that I believed I achieved 100% coverage to turn out in a PR that I missed 0.1% due to branches not covered.
What columns are you specifically looking for? Currently we show 4 columns for the selected counter:
- Percentage
- Covered Items
- Missed Items
- Total Items
I'd like columns like this:
- Percentage (instructions + branches)
- Covered Items (instructions + branches)
- Missed Items (instructions + branches)
- Total Items (instructions + branches)
But most notabli the sum of Missed items (instructions + branches) is important to me as it should go down to zero: no missed instructions and no missed branches for that particular row (package, class, method).
@akarnokd instructions + branches sounds like interesting metric ;-)