-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtest_result.mako
46 lines (46 loc) · 1.08 KB
/
test_result.mako
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//END"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>${testname} - Details</title>
<link rel="stylesheet" href="${css}" type="text/css" />
</head>
<body>
<h1>Results for ${testname}</h1>
<h2>Overview</h2>
<div>
<p><b>Result:</b> ${status}</p>
</div>
<p><a href="${index}">Back to summary</a></p>
<h2>Details</h2>
<table>
<tr>
<th>Detail</th>
<th>Value</th>
</tr>
<tr>
<td>Returncode</td>
<td>${returncode}</td>
</tr>
<tr>
<td>Time</td>
<td>${time}</b>
</tr>
<tr>
<td>Info</td>
<td>
<pre>${info}</pre>
</td>
</tr>
<tr>
<td>Command</td>
<td>
</pre>${command}</pre>
</td>
</tr>
</table>
<p><a href="${index}">Back to summary</a></p>
</body>
</html>