{% 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 Name Status Duration (seconds) {% for step_report in report.report %} {{ step_report.step_description }} {{ step_report.step_execution_status.value }} {{ step_report.step_execution_duration | round(2) }} {% endfor %} {% endblock %}