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

Build {{build.version}}

{% for test_run in build.test_runs.all %} {% for status in test_run.status.by_suite.all %} {% if status %} {% endif %} {% endfor %} {% if test_run.status.by_suite.count > 1 %} {% with overall_status=test_run.status.overall.first %} {% endwith %} {% endif %} {% endfor %}

Test run #{{test_run.job_id}} Environment: {{test_run.environment.slug}} {% if test_run.job_status %} Status: {{test_run.job_status}} {% endif %}
{% if test_run.resubmit_url %} resubmit {% endif %} {% if test_run.job_url %} origin {% endif %}

Suite Metrics summary Tests passed Tests failed
{{status.suite.slug}} {{status.metrics_summary}} {{status.tests_pass}} {{status.tests_fail}}
Overall summary {{overall_status.metrics_summary}} {{overall_status.tests_pass}} {{overall_status.tests_fail}}
 
{% endblock %}