{% extends "layout.html" %} {% load dashboard_extras %} {% block content %}

Summary of smoke testing for Ubuntu image {{run.build_no}}

Image Pass Rate: {{ run.pass_rate_pct }}
Total Tests Run: {{ run.total_count }}
Total Tests Failed: {{ run.fail_count }}
Total Tests Skipped: {{ run.skip_count }}

Graph

{% if run.total_count > 0 %} Results pie chart {% else %} No tests run... no chart. Please, run some tests! {% endif %}

Image aggregated results

{% for image in builds %} {% endfor %}
variant arch #total #pass #fail #skip pass rate #bugs
{{ image.variant }} {{ image.arch }} {{ image.total_count }} {{ image.pass_count }} {{ image.fail_count }} {{ image.skip_count }} {{ image.pass_rate_pct }} {{ image.bug_count }}
{% endblock %}