aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/testresult.html
blob: 70dac7aee264a39a44100826b289daed6f0115e8 (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
{% extends "layout.html" %}

{% block content %}

<h1>
  Builder <a href="{{ builder_link }}">{{ b.getBuilder().getName() }}</a> 
  build <a href="{{ build_link }}">#{{ b.getNumber() }}</a> 
  test <a href="">{{ '.'.join(tr.getName()) }}</a> 
</h1>

<div class="column">

  <h2>Result</h2>
  <p class="{{ result_css }} result">
    {{ result_word }}
    {%- set text = tr.getText() -%}
    {%- if text is string %}{{ text|e }}
    {%- else %}{{ text|join(" ")|e }}{% endif -%}
  </p>
  
<h2>Logs</h2>
<ul>
{% for l in logs %}
  <h3>Log: {{ l.name|e }}</h3>
    <samp><pre>{{ l.log|e }}</pre></samp>
  </br>
{% else %}
  <li class="alt">- No logs -</li> 
{% endfor %}
</ul>

</div>

{% endblock %}