{{ phase.report.longreprtext }}
{{ section }}
{{ content|escape|replace('\r\n', '\n')|ansi|safe }}
{% block test_content scoped %} {% if test.item.function.__doc__ %}
| Started | {{ test.started|strftime(time_format) }} |
|---|---|
| Ended | {{ test.ended|strftime(time_format) }} |
| Duration | {{ test.phases|sum(attribute='report.duration')|timedelta }} |
| {{ name|title }} | {{ value|escape|urlize }} |
| Markers |
{% for marker in markers %}
{{ marker.name }}
{% for value in marker.args %}
{{ value|repr }}
{% endfor %}
{% for key, value in marker.kwargs.items() %}
{{ key }}={{ value|repr }}
{% endfor %}
{% endfor %}
|
| Fixtures | {% for fixturename in test.item.fixturenames if not fixturename.startswith('_') %} {{ fixturename }} {% endfor %} |
| {{ extra.name }} |
{% if extra.format == 'image' %}
{{ extra.content|escape }}
{% elif extra.format == 'json' %}
{{ extra.content|tojson(indent=2) }}
{% elif extra.format == 'url' %}
{{ extra.content|urlize }}
{% else %}
?
{% endif %}
|
{{ phase.call.excinfo.exconly(tryshort=True) }}
{{ phase.report.longreprtext }}
{{ content|escape|replace('\r\n', '\n')|ansi|safe }}