{% extends "squad/base.html" %} {% load squad %} {% block content %} {% include "squad/project-nav.html" %}

Build {{build.version}} ยป Test run {{test_run.job_id}}

{% for key, value in metadata.items %} {% endfor %} {% if attachments|length > 0 %} {% endif %}

Metadata

{{key}} {{value}}

Downloads

{% if test_run.log_file|length > 0 %} Log file {% endif %} {% if test_run.tests_file|length > 0 %} Tests file {% endif %} {% if test_run.metrics_file|length > 0 %} Metrics file {% endif %} {% if test_run.metadata_file|length > 0 %} Metadata file {% endif %}

Attachments

{% for file, file_type, length in attachments %} {% if file_type %} {% else %} {% endif %} {{file}} ({{length|filesizeformat}}) {% endfor %}
{% for suite, metrics in metrics_by_suite %} {% for metric in metrics %} {% endfor %} {% endfor %} {% if not metrics_by_suite %} {% endif %} {% for suite, tests in tests_by_suite %} {% for test in tests %} {% endfor %} {% endfor %} {% if not tests_by_suite %} {% endif %}

Metrics

{{suite}}

{{metric.name}} {{metric.result}}
 
No metrics in this test run

Tests

{{suite}}

{{test.name}} {% if test.result %} pass {% else %} fail {% endif %}
 
No tests in this test run
{% endblock %}