{% extends "smoke/smoke_layout.html" %}
{% load dashboard_extras %}
{% block page_name %}Summary of smoke testing for Ubuntu image {{run.build_no}}{% endblock %}
{% 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 Errors: |
{{ run.error_count }}
|
Graph
{% if run.total_count > 0 %}

{% else %}
No tests run... no chart. Please, run some tests!
{% endif %}
Image aggregated results
variant |
arch |
#total |
#pass |
#fail |
#error |
pass rate |
bugs |
{% for image in builds %}
{{ image.variant }}
|
{{ image.arch }}
|
{{ image.total_count }}
|
{{ image.pass_count }}
|
{{ image.fail_count }}
|
{% if image.error_count > 0 and image.bugs|length = 0 %}{% endif %}
{{ image.error_count }}
|
{{ image.pass_rate_pct }}
|
{% for bug in image.bugs %}
LP:#{{ bug.bug_no }}
{% endfor %}
|
{% endfor %}
{% endblock %}