summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorDylan Baker <baker.dylan.c@gmail.com>2014-04-24 15:39:23 -0700
committerDylan Baker <baker.dylan.c@gmail.com>2014-05-19 14:38:11 -0700
commit80364ef8d6cc2ff8b3910aab4402305ab1aeb0f2 (patch)
treed781cc86b620ca49563ea80d44254bfb92418f28 /templates
parent61b6af11fe13948d30a709550433b1cdc3b8654e (diff)
summary.py: Treat subtests as groups, again
With this patch tests with subtests are treated as groups, their status is thrown away, and they inherit the 'worst' status from their children just like a group. This reverts commit de4b13de226e140313c3571e59a57438626da183. Signed-off-by: Dylan Baker <baker.dylan.c@gmail.com>
Diffstat (limited to 'templates')
-rw-r--r--templates/index.mako2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/index.mako b/templates/index.mako
index e959a27e2..1ca46d34f 100644
--- a/templates/index.mako
+++ b/templates/index.mako
@@ -60,7 +60,7 @@
<td class="${line['class']}">
## If the result is in the excluded results page list from
## argparse, just print the text, otherwise add the link
- % if line['class'] not in exclude:
+ % if line['class'] not in exclude and line['href'] is not None:
<a href="${line['href']}">
${line['text']}
</a>