{% extends "base.html" %} {% block content %}

Test Report : {{ report.title }}

    {% for suite in report %}
  • {{suite.name}}
  • {% endfor %}
    {% for suite in report %} {% for test in suite.cases %} {% if test.outcome != "passed" %}
  • {{test.prefix()}} {{test.name}}
  • {% endif %} {% endfor %} {% endfor %}
{% for suite in report %}

Test Suite: {{ suite.name }}

{% if suite.package %} Package: {{suite.package}} {% endif %} {% if suite.properties %}

Suite Properties

{% for prop in suite.properties %} {% endfor %}
{{prop.name}}{{prop.value}}
{% endif %}

summary

time{{suite.duration |round(1)}} sec
tests{{suite.tests_num}}
failures{{suite.failures_num}}
errors{{suite.errors_num}}
skipped{{suite.skipped_num}}

cases

{% for test in suite.cases %}
{% if test.msg is not none %} {% endif %}
name{{test.name}}
outcome{{test.outcome}}
time{{test.duration|round(1)}} sec
{{test.msg}}
{% if test.text is not none %}
{{test.text}}
{% endif %} {% if test.properties %} {% for prop in test.properties %} {% endfor %}
{{prop.name}}{{prop.value}}
{% endif %} {% if test.stdout %}
Stdout
{{test.stdout}}
{% endif %} {% if test.stderr %}
Stderr
{{test.stderr}}
{% endif %}
{% endfor %}
{% if suite.stdout or suite.stderr %}

Suite stdout:

{{suite.stdout}}

Suite stderr:

{{suite.stderr}}
{% endif %} {% endfor %} {% endblock %}