{% 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 %} {% for test in status.tests %} {% endfor %} {% endfor %}

{{status.suite.slug}}

Pass: {{status.pass_percentage}}%
Skip: {{status.skip_percentage}}%
Fail: {{status.fail_percentage}}%
{{test.name}} {{test.status}}
 
{% endif %} {% if metrics_status|length > 0 %}

Metrics

{% for status in metrics_status %} {% for metric in status.metrics %} {% endfor %} {% endfor %}

{{status.suite.slug}}

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