blob: 1a30d897a39f9418225bf577b47e24499d44f47d (
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
|
<!doctype html PUBLIC "-//W3C//DTD html 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Coverage for {{cu.name|escape}}</title>
<link rel='stylesheet' href='style.css' type='text/css'>
</head>
<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>:
<span class='pc_cov'>{{pc_cov|format_pct}}%</span>
</p>
<div style='clear:both'></div>
</div>
</div>
<div id='source'>
<table cellspacing='0' cellpadding='0'>
<tr>
<td class='linenos' valign='top'>
{% for line in lines %}
<p class='{{line.class}}'>{{line.number}}</p>
{% endfor %}
</td>
<td class='text' valign='top'>
{% for line in lines %}
<p class='{{line.class}}'>{{line.text.rstrip|escape|not_empty}}</p>
{% endfor %}
</td>
</tr>
</table>
</div>
<div id='footer'>
<div class='content'>
<p>
<a class='nav' href='http://bitbucket.org/ned/coveragepy/'>coverage.py v{{__version__}}</a>
</p>
</div>
</div>
</body>
</html>
|