{% extends "squad/base.html" %} {% load squad %} {% block content %} {% load squad %}

{{project.group}} » {{project.slug}} » Build {{build.version}} » Test run {% if test_run.job_url %}{% endif %}{{test_run.job_id}}{% if test_run.job_url %}{% endif %} Environment: {{test_run.environment.slug}}

Metadata

{% include "squad/_metadata.html" %}

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 %} {% if attachments|length > 0 %} {% for file, file_type, length in attachments %} {% if file_type %} {% else %} {% endif %} {{file}} ({{length|filesizeformat}}) {% endfor %} {% endif %} {% if tests_status|length > 0 %}

Tests

{% for status in tests_status %}

{{status.suite}}

{% with tests=status.tests_by_result %} {% if tests.fail %} {% for test in status.tests_by_result.fail %}
{{test.name}}
{% if test.log %} Show log snippet {% else %} No log available for this test {% endif %}
{% endfor %} {% endif %} {% if tests.skip %}
{{tests.skip|length}} skipped Show
{% endif %} {% if tests.pass %}
{{tests.pass|length}} passed Show
{% endif %} {% endwith %} {% endfor %} {% endif %} {% if metrics_status|length > 0 %}

Metrics

{% for status in metrics_status %}

{{status.suite}}

{% for metric in status.metrics %}
{{metric.name}}
{{metric.result}}
{% endfor %}
{% endfor %} {% endif %} {% endblock %}