{% extends "base_template.html" %} {% load views_extras %} {% block title %}CATTLE Runs {{ runs.number }}{% endblock %} {% block styles %} {% endblock %} {% block headscripts %} {% endblock %} {% block content %}

Report Title

{{buildreports.description}}
Branch: {{buildreports.branch}}

High level status

{{buildreports.branch}} {%if totalCurrentFailing > 0 %}is failing on the current build.{% elif totalFailing > 0 %}has unresolved failures in the last week.{% else %}looks great for the last week!{% endif %}

Most recent revision ({{commitlist.0.commit}}): {{totalCurrentSuites}} / {{totalSuites}} suites have been run.
{{totalCurrentPassing}} / {{totalCurrentSuites}} are passing suites
{{totalCurrentFailing}} / {{totalCurrentSuites}} are failing suites


Last valid execution for each suite in the last week ({{totalSuites}} suites ran).
{{totalPassing}} / {{totalSuites}} are passing suites
{{totalFailing}} / {{totalSuites}} are failing suites

Operating system level status

{% for os in oslist %} {{os.operating_system}} {% endfor %}

Failing test details

Details on recent failing tests like what test step failed, the logged message and associated JIRA bug/status.
Date Time
Build Info
Branch
Duration
Results
Caused Bug
Comment
{% for run in lastRuns %}{% if run.run_results == 0 or run.run_results >= 10 %}
{# Each "run" is a run model object. #}
{{run.end_time|date:"d M H:m"}}
{{run.operating_system}} on {{run.builder|address_tail}}
Build: {{run.build_number}} Commit {{run.commit.revision}}
STE: {{run.suite_file|suite_link}}
ENV: {{run.env_file|env_link}}
{{ run.parent_branch }}
{{ run.end_time|subtractdate:run.start_time|format_time }}
Tests
{{ run.run_results|translate_PF }}
{{ run.caused_bug|jira_pull|safe }}
{{ run.comment|linebreaks }}
{% endif %} {% endfor %}

Commit summary

A list of commits in the last 7 days and testing coverage/pass fail counts. {% for commit in commitstats %}
{{commit.commit}} {{commit.passes}}/{{commit.runcount}} runs passed.
{% endfor %}

Bug list

{% for bugs in buglist %}
{{ bugs.caused_bug|jira_pull|safe }}
{% endfor %}

Suite list

{% for run in lastRuns %}
{% if run.suite_file == "UNAVAILABLE" %}Build sequences count as a suite as well. {% else %}{{ run.suite_file }}{% endif %}
{% endfor %}


{% comment %}{% endcomment %} Spent {{loadtime}} {% endblock %} {% block footscripts %} {% endblock %}