{% extends "smoke/smoke_layout.html" %}
{% load dashboard_extras %}
{% block page_name %}Smoke testing results for {{image.run.build_no}} {{image.run.flavor}}-{{image.variant}}-{{image.arch}}{% endblock %}
{% block content %}
Results
Pass Rate: |
{{ image.pass_rate_pct }}
|
Total Tests Run: |
{{ image.total_count }}
|
Total Tests Failed: |
{{ image.fail_count }}
|
Total Errors: |
{{ image.error_count }}
|
Graph
Image aggregated results
test |
date |
#total |
#pass |
#fail |
#error |
pass rate |
bugs |
logs |
{% for result in results %}
{{result.name}}
|
{{result.ran_at|date:"Y/m/d H:i"}}
|
{{result.total_count}}
|
{{result.pass_count}}
|
{{result.fail_count}}
|
{% if result.error_count > 0 and result.bugs.all|length = 0 %}{% endif %}
{{result.error_count}}
|
{{result.pass_rate_pct}}
|
{% for bug in result.bugs.all %}
LP: #{{bug.bug_no}}
{% endfor %}
|
{{ result.log_count }}
|
{% endfor %}
{% endblock %}