{% extends "zumanji/layout.html" %} {% load zumanji_helpers %} {% block content %} {% render_historical_sparkline test %} {% render_test_columns %} {# #} {% for test in test_list %} {% render_test_row test %} {% empty %} {% render_test_row test %} {% endfor %}
TestDurationHistorical
{% if not test_list %} {# Must be a leaf #}

Build Details

{% include "zumanji/includes/build_details.html" %} {% endif %} {% if test.description %}

Description

{{ test.description|linebreaks }}
{% endif %}
{% if changes %} {% render_test_columns %} {% for change in changes %} {% render_change_row change compare_build %} {% endfor %}
Test
{% else %}

No changes in reported calls were seen.

{% endif %}
{% if trace_results %}
{% for trace in trace_results.diff %}
{% for tag, call_id, call in trace.calls %} {% if call %} {# #} {% else %} {% endif %} {% endfor %}
{% if trace.test %} Calls captured in Build #{{ trace.test.build_id }} {% else %} (No previous results captured) {% endif %}
{{ call.interface }}
{% for i in call.depth|range %}{% endfor %} {{ call.command }} {{ call.args }}
{{ call.duration|floatformat:3 }} s 
{% endfor %}
{% endif %}
{% endblock %} {% block scripts %} {% if trace_results %} {% endif %} {% endblock %}