{% 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 }}

STDOUT
{{ test.result.container.logs.stdout | linebreaksbr }}
STDERR
{{ test.result.container.logs.stderr | 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 %}

STDOUT

{{ init.container.logs.stdout | linebreaksbr }}

STDERR

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

Specimen Logs

{% for specimen in payload.results.specimen_logs %}

{{specimen.name}}

STDOUT

{{ specimen.logs.stdout | linebreaksbr }}

STDERR

{{ specimen.logs.stderr | linebreaksbr }}
{% endfor %}