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

Metadata

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

Test results

{% for environment in test_results.environments %} {% endfor %} {% for suite, results in test_results.data.items %} {% for environment in test_results.environments %} {% with entry=results|get_value:environment %} {% if not entry.has_data %} {% elif entry.has_failures %} {% else %} {% endif %} {% endwith %} {% endfor %} {% endfor %}
Suite{{environment}}
{{suite}}{{entry.has_data}}
{% with entries=results.values %} {% for entry in entries %} {% for status in entry.statuses %} {% endfor %} {% endfor %}
Test Run Environment Test Results
{{status.test_run.job_id}} {{status.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 %} {% if status.tests_xfail > 0 %} {{status.tests_xfail}} xfail {% endif %}
{% endwith %}

Metrics

{% for suite, results in test_results.data.items %} {% for environment, entry in results.items %} {% for status in entry.statuses %} {% if status.suite and status.has_metrics %}
{{status.suite}}
{{status.environment}}
{{status.metrics_summary|floatformat:3}}
{{test_run.job_id}}
{% endif %} {% endfor %} {% endfor %} {% endfor %}

Test runs

{% for test_run in test_results.test_runs %}
{{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 %}