blob: e6c8d23c5ecb7adb3ff936116e4d64e5386ea7cf (
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
|
<!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'>
<h1>Coverage for <b>{{cu.filename|escape}}</b>:
<span class='pc_cov'>{{pc_cov|format_pct}}%</span>
</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>
<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>
|