{% extends "squad/base.html" %} {% load squad %} {% load static %} {% block content %} {% include "squad/build-nav.html" %} {% for key, value in metadata %} {% endfor %} {% 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 %}

Metadata

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

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 user.is_staff or user.is_superuser %} {% for test_job in test_run.test_jobs.all %} {% if test_job.can_resubmit %} {{test_job.job_id}} - resubmit {% endif %} {% endfor %} {% 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 %} {% block javascript %} {% endblock %}