{% set has_passed = report_rows|selectattr('test_status', 'equalto', 'PASSED')|list|length > 0 %} {% set has_failed = report_rows|selectattr('test_status', 'equalto', 'FAILED')|list|length > 0 %} {% set has_skipped = report_rows|selectattr('test_status', 'equalto', 'SKIPPED')|list|length > 0 %} {% if has_passed %} {% endif %} {% if has_failed %} {% endif %} {% if has_skipped %} {% endif %} Executed {{ summary.total }} test cases in {{ summary.duration }} (HH:MM:SS)
{% for row in report_rows %} {% endfor %}
# Status Test Case Name Phase Request Category Request Sub-Category Center Duration
{{ loop.index }} {{ row.test_status }} {{ row.test_case_name or '' }} {{ row['Phase'] or '' }} {{ row['Request Category'] or '' }} {{ row['Request Sub-Category'] or '' }} {{ row['Center'] or '' }} {{ format_duration(row['duration'])|default('', true) }}
open_in_full