From 78e2c8c6e014b205e5f2cf7764ca9cf3597b318a Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Fri, 20 Apr 2012 17:37:11 -0400 Subject: The [html]extra_css configuration value is a file path to a CSS file that gets copied into the HTML report. --- coverage/htmlfiles/index.html | 3 +++ coverage/htmlfiles/pyfile.html | 3 +++ 2 files changed, 6 insertions(+) (limited to 'coverage/htmlfiles') diff --git a/coverage/htmlfiles/index.html b/coverage/htmlfiles/index.html index 04b314a3..c6d9eec0 100644 --- a/coverage/htmlfiles/index.html +++ b/coverage/htmlfiles/index.html @@ -4,6 +4,9 @@ Coverage report + {% if extra_css %} + + {% endif %} diff --git a/coverage/htmlfiles/pyfile.html b/coverage/htmlfiles/pyfile.html index ee0a3b1b..434edfdd 100644 --- a/coverage/htmlfiles/pyfile.html +++ b/coverage/htmlfiles/pyfile.html @@ -7,6 +7,9 @@ Coverage for {{cu.name|escape}}: {{nums.pc_covered_str}}% + {% if extra_css %} + + {% endif %} -- cgit v1.2.1