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

Metadata

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

Test results

{% if count_statuses_nofail > 0 %}
/{{count_statuses_nofail}} test suites with no failures hidden Show
{% endif %}

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

Test runs

{% for test_run in build.test_runs.all %}
{{test_run.job_id}}
{{test_run.environment}}
{{test_run.datetime}}
{% if test_run.completed %} {% else %} {% endif %} {{test_run.job_status|default:""}}
{% endfor %}
{% endblock %} {% block javascript %} {% endblock %}