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

Build {{build.version}} ยป Test run {{test_run.job_id}} Environment: {{test_run.environment.slug}}

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

Metadata

{{key}} {{value|urlize}}

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 %}
{% if tests_status|length > 0 %} {% endif %} {% for status in tests_status %} {% for test in status.tests %} {% endfor %} {% endfor %} {% if metrics_status|length > 0 %} {% endif %} {% for status in metrics_status %} {% for metric in status.metrics %} {% endfor %} {% endfor %}

Tests

{{status.suite.slug}}

Pass: {{status.pass_percentage}}%
Fail: {{status.fail_percentage}}%
{{test.name}} {{test.status}}
 

Metrics

{{status.suite.slug}}

{{metric.name}} {{metric.result}}
 
{% endblock %}