From 52ef6f76547e757dc9ca9fc4aecdb9aec4a47368 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 27 Oct 2009 07:21:41 -0400 Subject: Better reporting of partial lines, including leaving out partial stuff altogether if no arcs were measured. --- coverage/htmlfiles/index.html | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'coverage/htmlfiles/index.html') diff --git a/coverage/htmlfiles/index.html b/coverage/htmlfiles/index.html index 35659317..2234ac73 100644 --- a/coverage/htmlfiles/index.html +++ b/coverage/htmlfiles/index.html @@ -21,6 +21,9 @@ statements run excluded + {% if arcs %} + partial + {% endif %} coverage {% for file in files %} @@ -29,6 +32,9 @@ {{file.stm}} {{file.run}} {{file.exc}} + {% if arcs %} + {{file.par}} + {% endif %} {{file.pc_cov|format_pct}}% {% endfor %} @@ -37,6 +43,9 @@ {{total_stm}} {{total_run}} {{total_exc}} +{% if arcs %} +{{total_par}} +{% endif %} {{total_cov|format_pct}}% -- cgit v1.2.1