Overview

Fail Error {% for class, group in report.items() %} {{ group.stats.failures }} {{ group.stats.errors }} {% endfor %} {{ stats.failures }} {{ stats.errors }}
Class Skip Success Total
{{ class }} {{ group.stats.skipped }} {{ group.stats.passes }} {{ group.stats.total }}
Total {{ stats.skipped }} {{ stats.passes }} {{ stats.total }}

Failure details

{% for class, group in report.items() %} {% if group.stats.failures or group.stats.errors %}

{{ class }} ({{ group.stats.failures }} failures, {{ group.stats.errors }} errors)

{% for test in group.tests %} {% if test.failed and test.type != 'skipped' %}

{{ test.name }}: {{ test.errtype }}

Traceback

{{ test.tb }}

Details

{{ test.message }}
{% endif %} {% endfor %}
{% endif %} {% endfor %}

All tests

{% for class, group in report.items() %}

{{ class }} ({{ group.stats.failures }} failures, {{ group.stats.errors }} errors)

{% endfor %}