{% extends "base.html.j2" %} {% block title %}Summary{% endblock %} {% block content %} {{ summary('Results', "", [ { 'title': 'Pythonsdk Tests', 'failing': report.failed_steps_num, 'total': (report.report | length)}, ]) }}

{{ usecase }}

Description: {{ details }}
Components: {{ components }}
Logs
{% for step_report in report.report %} {% endfor %}
Name Status Duration (seconds)
{{ 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 %} {% endfor %}
{{ error_reason }}
{% endif %}
{{ step_report.step_execution_status.value }} {{ step_report.step_execution_duration | round(2) }}
{% endblock %}