{{ test_report_title }}

Summary

    {% for key, val in test_summary.items() %}
  • {{ key.title() }}: {{ val }}
  • {% endfor %}

Test Results

search
    {% for test_result in test_results %}
  • {% if test_result.result == 'passed' %} done {% elif test_result.result in ['failed', 'error'] %} error {% elif test_result.result == 'skipped' %} warning {% endif %} {{ test_result.name }}
    Description {% if test_result.description %}

    {{ test_result.description.replace('\n', '
    ') }}

    {% else %}

    This test has no docstring...

    {% endif %} Result: {{ test_result.result }}
    Traceback
    {{ test_result.traceback }}
  • {% endfor %}