{% extends "layout.html" %} {% block title %}Test Report{% endblock %} {% block body %}
| Cloud: | {{ test.cloud.label }} |
|---|---|
| Test ID: | {{ test.id}} |
| Pass | Fail | Fail Setup | Error | Skip | Total |
|---|---|---|---|---|---|
| {{ test_result['summary']['PASS'] }} | {{ test_result['summary']['FAIL'] }} | {{ test_result['summary']['FAIL_SETUP'] }} | {{ test_result['summary']['ERROR'] }} | {{ test_result['summary']['SKIP'] }} | {{ test_result['summary']['Total'] }} |
| Testcase | Status | Elapsed Time | ||
|---|---|---|---|---|
| Test Group: {{ classname }} | ||||
| {{ testcase[0] }} | {% if testcase[1] == "PASS" %}{{ testcase[1] }} | {% elif testcase[1] == "SKIP" %}{{ testcase[1] }} | {% else %}{{ testcase[1] }} | {% endif %}{{ testcase[2] }}s |