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

{{project.group}} » {{project.slug}} » Build {{build.version}} » Test run {{test_run.job_id}}

Test environment: {{test_run.environment}} {% if test_run.environment.description %} {% endif %}

{% if test_run.environment.description %} {% endif %}

Test run metadata

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

Related 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 %}

Test results

{% for status in tests_status %}
{{status.suite}}
{{status.test_run.environment}}
{{status.tests_total}} tests {% if status.tests_pass > 0 %} {{status.tests_pass}} pass {% endif %} {% if status.tests_skip > 0 %} {{status.tests_skip}} skip {% endif %} {% if status.tests_fail > 0 %} {{status.tests_fail}} fail {% endif %}
{{status.test_run.job_id}}
{% endfor %}

Metrics

{% for status in metrics_status %}
{{status.suite}}
{{test_run.environment}}
{{status.metrics_summary|floatformat:3}}
{{test_run.job_id}}
{% endfor %}
{% endblock %}