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

Metadata

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

Test results

{% for test_run in build.test_runs.all %} {% for status in test_run.status.all %} {% if status.suite and status.has_tests %}
{{status.suite}}
{{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 %}
{{test_run.job_id}}
{% endif %} {% endfor %} {% endfor %}

Metrics

{% for test_run in build.test_runs.all %} {% for status in test_run.status.all %} {% if status.suite and status.has_metrics %}
{{status.suite}}
{{test_run.environment}}
{{status.metrics_summary|floatformat:3}}
{{test_run.job_id}}
{% endif %} {% endfor %} {% endfor %}
{% endblock %} {% block javascript %} {% endblock %}