diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-04-24 21:13:15 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-04-24 21:13:15 -0400 |
commit | 4870bc77e97d0d4f3e4740b9d1d95975e01ffe67 (patch) | |
tree | d9c436215f323da738164cc6c7fc871e2a8fc526 /coverage/htmlfiles/pyfile.html | |
parent | 99f551a1f0ba73aeabc6b9280677d9fa64f3d7a3 (diff) | |
download | python-coveragepy-4870bc77e97d0d4f3e4740b9d1d95975e01ffe67.tar.gz |
A cleaner look for the HTML reports.
Diffstat (limited to 'coverage/htmlfiles/pyfile.html')
-rw-r--r-- | coverage/htmlfiles/pyfile.html | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/coverage/htmlfiles/pyfile.html b/coverage/htmlfiles/pyfile.html index 1a30d89..e6c8d23 100644 --- a/coverage/htmlfiles/pyfile.html +++ b/coverage/htmlfiles/pyfile.html @@ -7,18 +7,15 @@ <body>
<div id='header'>
<div class='content'>
- <div id='file_stats'>
- <table class='stats'>
- <tr><td class='label'>Lines</td><td class='number'>{{n_lin}}</td></tr>
- <tr><td class='label'>Statements</td><td class='number'>{{n_stm}}</td></tr>
- <tr><td class='label'>Excluded</td><td class='number'>{{n_exc}}</td></tr>
- <tr><td class='label'>Missing</td><td class='number'>{{n_mis}}</td></tr>
- </table>
- </div>
- <p>Coverage for <b>{{cu.filename|escape}}</b>:
+ <h1>Coverage for <b>{{cu.filename|escape}}</b>:
<span class='pc_cov'>{{pc_cov|format_pct}}%</span>
- </p>
- <div style='clear:both'></div>
+ </h1>
+ <h2 class='stats'>
+ Stats:
+ <span class='stm'>{{n_stm}} statements</span>
+ <span class='exc'>{{n_exc}} excluded</span>
+ <span class='mis'>{{n_mis}} missing</span>
+ </h2>
</div>
</div>
|