DebugClients/Python/coverage/htmlfiles/index.html

changeset 0
de9c2efb9d02
child 31
744cd0b4b8cd
equal deleted inserted replaced
-1:000000000000 0:de9c2efb9d02
1 <!doctype html PUBLIC "-//W3C//DTD html 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>Coverage report</title>
5 <link rel='stylesheet' href='style.css' type='text/css'>
6 </head>
7 <body>
8
9 <div id='header'>
10 <div class='content'>
11 <h1>Coverage report:
12 <span class='pc_cov'>{{total_cov|format_pct}}%</span>
13 </h1>
14 </div>
15 </div>
16
17 <div id='index'>
18 <table class='index'>
19 <tr>
20 <th class='name'>Module</th>
21 <th>statements</th>
22 <th>run</th>
23 <th>excluded</th>
24 <th>coverage</th>
25 </tr>
26 {% for file in files %}
27 <tr>
28 <td class='name'><a href='{{file.html_filename}}'>{{file.cu.name}}</a></td>
29 <td>{{file.stm}}</td>
30 <td>{{file.run}}</td>
31 <td>{{file.exc}}</td>
32 <td>{{file.pc_cov|format_pct}}%</td>
33 </tr>
34 {% endfor %}
35 <tr class='total'>
36 <td class='name'>Total</td>
37 <td>{{total_stm}}</td>
38 <td>{{total_run}}</td>
39 <td>{{total_exc}}</td>
40 <td>{{total_cov|format_pct}}%</td>
41 </tr>
42 </table>
43 </div>
44
45 <div id='footer'>
46 <div class='content'>
47 <p>
48 <a class='nav' href='http://nedbatchelder.com/code/coverage'>coverage v{{__version__}}</a>
49 </p>
50 </div>
51 </div>
52
53 </body>
54 </html>

eric ide

mercurial