{{ usecase }}
Description: {{ details }}
Components: {{ components }}
Logs
Name |
Status |
Duration (seconds) |
{% for step_report in report.report %}
{{ step_report.step_description }}
{% if step_report.step_execution_status.value == 'FAIL' and (step_report.step_error_reason | length) > 0 %}
{% for error_reason in step_report.step_error_reason %}
|
{{ error_reason }} |
{% endfor %}
{% endif %}
|
{{ step_report.step_execution_status.value }}
|
{{ step_report.step_execution_duration | round(2) }}
|
{% endfor %}
{% endblock %}