{% for suite in payload.results.suites %}

{{ suite.suite.name }}

{{ suite.suite.description }}

Tests

{% for test in suite.tests %}
{% if test.result.success %}

[OK] {{ test.name }}

{% else %}

[FAILED] {{ test.name }}

{% endif %}

Logs

{{ test.result.logs | linebreaksbr }}

Container Logs: {{ test.result.container.name }}

{{ test.result.container.logs | linebreaksbr }}
{% endfor %} {% endfor %} {% if payload.results.init_containers %}

Initialization Workflow

{% for init in payload.results.init_containers %}
{% if init.success %}

[OK] {{init.container.name}}

{% else %}

[FAILED] {{init.container.name}}

{% endif %} {{ init.container.logs | linebreaksbr }}
{% endfor %} {% endif %}