Suite Statistics:
{{suite_stats['Total']}} {{suite_stats['Pass']}}
Total Pass
{{suite_stats['Fail']}} {{suite_stats['Skip']}}
Fail Skip
Test Statistics:
{{test_stats['Total']}} {{test_stats['Pass']}}
Total Pass
{{test_stats['Fail']}} {{test_stats['Skip']}}
Fail Skip
Keyword Statistics:
{{kw_stats['Total']}} {{kw_stats['Pass']}}
Total Pass
{{kw_stats['Fail']}} {{kw_stats['Skip']}}
Fail Skip
Top 5 Common Failures: {% for key, value in error_stats.iterrows() %} {% if (value['Message'] != "") %} {% endif %} {% endfor %}
Error Message Occurence
{{value['Message']}} {{value['times']}}
Execution Duration(m):
Type Min Max Avg
Suite {{(suite_stats['Min']/60000)|round(2)}} {{(suite_stats['Max']/60000)|round(2)}} {{(suite_stats['Avg']/60000)|round(2)}}
Test {{(test_stats['Min']/60000)|round(2)}} {{(test_stats['Max']/60000)|round(2)}} {{(test_stats['Avg']/60000)|round(2)}}
Top 10 Suite Failures:
{% for suite in suites %} {% if (suite['Status'] == "PASS") %} {% elif (suite['Status'] == "FAIL") %} {% else %} {% endif %} {% endfor %}
Name Status Total Pass Fail Skip Time (s)
{{ suite['Name'] }} {{ suite['Status'] }} {{ suite['Status'] }} {{ suite['Status'] }}{{ suite['Total'] }} {{ suite['Pass'] }} {{ suite['Fail'] }} {{ suite['Skip'] }} {{ (suite['Time']/1000)|round(2) }}
{% for test in tests %} {% if (test['Status'] == "PASS") %} {% elif (test['Status'] == "FAIL") %} {% else %} {% endif %} {% endfor %}
Suite Name Test Name Status Time (s) Message Tags
{{ test['Suite Name'] }} {{ test['Test Name'] }} {{ test['Status'] }} {{ test['Status'] }} {{ test['Status'] }}{{ (test['Time']/1000)|round(2) }} {{ test['Message'] }} {{ test['Tags'] }}
{% if not keyword_times.empty %} {% for key, value in keyword_times.iterrows() %} {% endfor %} {% endif %}
Keyword Name Times Min Duration(s) Max Duration(s) Average Duration(s)
{{ value['Name'] }} {{ value['times'] }} {{ (value['time_min']/1000)|round(2) }} {{ (value['time_max']/1000)|round(2) }} {{ (value['time_mean']/1000)|round(2) }}