{% if report.failing|length > 0 %} [FAIL] {% else %} [PASS] {% endif %} {{report.target}} - Passing: {{report.passing|length}}, Failing: {{report.failing|length}}, Skipped: {{report.skipped|length}}

Failing

{% with build = report.failing %} {% include 'tests_build/build_report_table.html' %} {% endwith %}

Passing

{% with build = report.passing %} {% include 'tests_build/build_report_table.html' %} {% endwith %}

Skipped

{% with build = report.skipped %} {% include 'tests_build/build_report_table.html' %} {% endwith %}