{% extends "smokeng/smoke_layout.html" %}
{% load dashboard_extras staticfiles %}
{% load render_table from django_tables2 %}
{% block extra_headers %}
{% endblock extra_headers %}
{% block page_name %}
Test case results for {{ image.release }} {{ image.arch }} {{ image.variant }} {{ build_number }}
{% endblock %}
{% block content %}
Test case results
Build #: | {{ build_number }} |
Arch: | {{ image.arch|display_name }} |
Release: | {{ image.release }} |
Variant: | {{ image.variant }} |
Total tests: | {{ totals.count }} |
Pass count: | {{ totals.pass }} |
Fail count: | {{ totals.fail }} |
Error count: | {{ totals.error }} |
Pass rate: | {{ totals.rate }} |
| Artifacts |
| Console Log |
{% if history %}
{% endif %}
{% if categories %}
Failure explanations
{% for name, percentage in categories.items %}
{{ name }} | {{ percentage }} |
{% endfor %}
{% endif %}
{% if tests %}
{% render_table table "table.html" %}
{% else %}
No test case results found
{% endif %}
{% include 'smokeng/artifacts.html' %}
{% endblock %}