Test Report
{% if priority_fail_count %}
Priority
|
Failed
|
{% for row in priority_fail_count %}
{{row.1}} |
{{row.0}} |
{% endfor %}
{% endif %}
{% if exception_details %}
Exceptions Occurred while executing tests. Click
HERE
to find out the details
{% include "exceptions.html" with exception_details=exception_details %}
{% endif %}
Tests Executed
{% for key, val in passed_tests.items %}
Test Scenario: {{key}}
Endpoint: {{val.0.endpoint}}
Environment:
{% for steps in val.0.reproduce_steps %}
- {{steps}}
{% endfor %}
Then:
{% for obj in val %}
{% include "test_details.html" with obj=obj %}
{% endfor %}
{% endfor %}