{% if group.statistics.passed > 0 %}
{% endif %}
{% if group.statistics.failed > 0 %}
{% endif %}
{% if group.statistics.error > 0 %}
{% endif %}
{% if group.statistics.warnings > 0 %}
{% endif %}
{% if group.statistics.skipped > 0 %}
{% endif %}
{% endif %}
{% for suite_name, suite_tests in group.suites.items() %}
▼{{ suite_name }}
{% set suite_stats_passed = suite_tests|selectattr('result.status.name', 'equalto', 'PASSED')|list|length %}
{% set suite_stats_failed = suite_tests|selectattr('result.status.name', 'equalto', 'FAILED')|list|length %}
{% set suite_stats_error = suite_tests|selectattr('result.status.name', 'equalto', 'ERROR')|list|length %}
{% set suite_stats_skipped = suite_tests|selectattr('result.status.name', 'equalto', 'SKIPPED')|list|length %}
{% set suite_stats_warning = suite_tests|selectattr('result.status.name', 'equalto', 'WARNING')|list|length %}
{% set suite_stats_total = suite_tests|length %}
P:{{ suite_stats_passed }} F:{{ suite_stats_failed }} E:{{ suite_stats_error }} S:{{ suite_stats_skipped }} W:{{ suite_stats_warning }}
{% if suite_stats_total > 0 %}
{% if suite_stats_passed > 0 %}
{% endif %}
{% if suite_stats_failed > 0 %}
{% endif %}
{% if suite_stats_error > 0 %}
{% endif %}
{% if suite_stats_warning > 0 %}
{% endif %}
{% if suite_stats_skipped > 0 %}
{% endif %}
{% endif %}
{% for test in suite_tests %}
{{ test.result.test_name }}
{{ test.result.status.name }}
{% if render_description and test.result.description %}
Description
{{ test.result.description }}
{% endif %}
Result
{{ test.result.result }}
{% if render_message and test.result.message %}
Message
{{ test.result.message }}
{% endif %}
{% if render_context and test.result.context %}
Context
{% if serialize_context_exportable_obj and test.serialized_context %}
{% if test.serialized_context is mapping %}
{% for key, value in test.serialized_context.items() %}
{{ key }}:
{% if value is mapping and value.type == 'image' %}
{% else %}
{{ value }}
{% endif %}
{% endfor %}
{% else %}
{{ test.serialized_context }}
{% endif %}
{% else %}
{{ test.result.context }}
{% endif %}
{% endif %}
{% if render_traceback and test.result.traceback %}