blob: 530af6660f5e32f4bc79912b5bf4910a1ec85264 (
plain) (
blame)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
<html>
<head>
<style>
th {
text-transform: uppercase;
}
th, td {
padding: 5px;
}
table {
border-collapse: collapse;
}
span.test_status {
font-weight: bold;
}
span.test_fail {
color: red;
}
span.test_pass {
color: green;
}
span.test_mute {
color: blue;
}
table > tbody > tr > td:nth-child(2),
table > tbody > tr > td:nth-child(3),
table > tbody > tr > td:nth-child(4) {
text-align: center;
}
</style>
</head>
<body>
{% for status in status_order %}
<h1 id="{{ status.name}}">{{ status.name }} ({{ tests[status] | length }})</h1>
<table style="width:100%;" border="1">
<thead>
<tr>
<th>test name</th>
<th>elapsed</th>
<th>status</th>
{% if status in has_any_log %}
<th>LOG</th>
{% endif %}
</tr>
</thead>
<tbody>
{% for t in tests[status] %}
<tr>
<td>{{ t.full_name }}</td>
<td><span title="{{ t.elapsed }}s">{{ t.elapsed_display }}</span></td>
<td>
<span class="test_status test_{{ t.status_display }}">{{ t.status_display }}</span>
</td>
{% if status in has_any_log %}
<td>
{% if t.log_urls %}
{% for log_name, log_url in t.log_urls.items() %}
<a href="{{ log_url }}">{{ log_name.upper() }}</a>{% if not loop.last %} | {% endif %}
{% endfor %}
{% else %}
{% endif %}
</td>
{% endif %}
</tr>
{% endfor %}
</tbody>
</table>
{% endfor %}
</body>
</html>
|