annotate bitten/templates/bitten_summary_tests.html @ 898:ba551c60cf06 0.6.x

0.6dev: Merged [976] from trunk.
author hodgestar
date Wed, 09 Mar 2011 15:03:09 +0000
parents 21902b481ee7
children
rev   line source
503
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
1 <!DOCTYPE html
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
2 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
4 <html xmlns="http://www.w3.org/1999/xhtml"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
5 xmlns:py="http://genshi.edgewall.org/" py:strip="">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
6 <body py:strip="">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
7 <h3>Test Results</h3>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
8 <table class="listing tests">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
9 <thead><tr>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
10 <th>Test Fixture</th><th>Total</th>
551
6b4def531a4e Added support for graphing ignored tests (currently only supported for `nunit`)
dfraser
parents: 503
diff changeset
11 <th>Failures</th><th>Ignores</th><th>Errors</th>
503
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
12 </tr></thead>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
13 <tbody><tr py:for="item in data.fixtures"
636
21902b481ee7 0.6dev: Inline display of error and failure details in 'Test Results' summary table.
osimons
parents: 551
diff changeset
14 class="${item.failures and 'failed' or 'success'}">
21902b481ee7 0.6dev: Inline display of error and failure details in 'Test Results' summary table.
osimons
parents: 551
diff changeset
15 <th>
21902b481ee7 0.6dev: Inline display of error and failure details in 'Test Results' summary table.
osimons
parents: 551
diff changeset
16 <span class="fixture" />
21902b481ee7 0.6dev: Inline display of error and failure details in 'Test Results' summary table.
osimons
parents: 551
diff changeset
17 <py:choose test="">
21902b481ee7 0.6dev: Inline display of error and failure details in 'Test Results' summary table.
osimons
parents: 551
diff changeset
18 <a py:when="item.href" href="$item.href">$item.name</a>
21902b481ee7 0.6dev: Inline display of error and failure details in 'Test Results' summary table.
osimons
parents: 551
diff changeset
19 <span py:when="not item.href">$item.name</span>
21902b481ee7 0.6dev: Inline display of error and failure details in 'Test Results' summary table.
osimons
parents: 551
diff changeset
20 </py:choose>
21902b481ee7 0.6dev: Inline display of error and failure details in 'Test Results' summary table.
osimons
parents: 551
diff changeset
21 <p class="details" py:for="failure in item.failures">$failure.name ($failure.status):<br />
21902b481ee7 0.6dev: Inline display of error and failure details in 'Test Results' summary table.
osimons
parents: 551
diff changeset
22 <span>$failure.traceback</span>
21902b481ee7 0.6dev: Inline display of error and failure details in 'Test Results' summary table.
osimons
parents: 551
diff changeset
23 </p>
503
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
24 </th>
551
6b4def531a4e Added support for graphing ignored tests (currently only supported for `nunit`)
dfraser
parents: 503
diff changeset
25 <td>${item.num_success + item.num_failure + item.num_error + item.num_ignore}</td>
503
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
26 <td>$item.num_failure</td>
551
6b4def531a4e Added support for graphing ignored tests (currently only supported for `nunit`)
dfraser
parents: 503
diff changeset
27 <td>$item.num_ignore</td>
503
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
28 <td>$item.num_error</td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
29 </tr></tbody>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
30 <tbody class="totals"><tr py:with="totals = data.totals">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
31 <th>Total</th>
551
6b4def531a4e Added support for graphing ignored tests (currently only supported for `nunit`)
dfraser
parents: 503
diff changeset
32 <td>${totals.success + totals.failure + totals.ignore + totals.error}</td>
503
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
33 <td>$totals.failure</td>
551
6b4def531a4e Added support for graphing ignored tests (currently only supported for `nunit`)
dfraser
parents: 503
diff changeset
34 <td>$totals.ignore</td>
503
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
35 <td>$totals.error</td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
36 </tr></tbody>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
37 </table>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
38 </body>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
39 </html>
Copyright (C) 2012-2017 Edgewall Software