Test run
Production test report
{{ completed }}Complete
{{ outcomes.get("passed", 0) }}Passed
{{ outcomes.get("failed", 0) }}Failed
{{ total }}Total
Run details
{{ total }} {{ "test" if total == 1 else "tests" }}
Tests
{% for test in test_records %}
{% else %}
{{ test.name }} {{ test.description or test.nodeid }} {{ "%.3f" | format(test.duration) }}s {{ test.outcome }}
{% if test.requirements or test.steps %}
{% endif %}
Requirements
{% if test.requirements %}
{% for requirement in test.requirements %}{{ requirement }}{% endfor %}
{% else %}
No requirements attached
{% endif %}
Procedure
{% if test.steps %}- {% for step in test.steps %}
- {{ step }} {% endfor %}
Logs ({{ test.logs | length }})
-
{% for log in test.logs %}
- {{ log.timestamp }} {{ log.level }} {{ log.logger }} {% else %}
- No logs captured for this test. {% endfor %}
Failure details
{% endif %}
{{ test.failure_reason }}
No tests were collected.
{% endfor %}