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