Test Report
{% if priority_fail_count %}
{% for priority, fail_count in priority_fail_count.items %}
{% 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 %}