-
Improvement
-
Resolution: Fixed
-
Minor
-
None
I use the cobertura plugin to display the coverage results on some Python code. There are some critical parts of the code where I want to make sure we have 100% coverage. I deliberately don't want 99.7% to mean 100%, because bugs usually happen in those few lines that only execute under very special circumstances.
Is it possible to render anything between 99% (or 99.5%) and 100% as 99+% (or similar) ? This should apply to all places where a percentage is shown (ie: at the top of the main graph on the job page, in the detailed coverage pages, ...)
pjaytycy the easiest thing to do here is to round down everything > 90 and < 100 to 90. In that case you wouldn't be able to tell 90 vs 90+, but that seems OK to me. What do you think?