{{ plot.name }}
{% if plot.type == 'image' %}
{% if self_contained %}
{% endif %}
{% else %}
Unsupported plot type: {{ plot.type }}
{% endif %}{% block test_content scoped %} {% if test.item.function and test.item.function.__doc__ %}
| Started | {{ test.started|strftime(time_format) }} |
|---|---|
| Ended | {{ test.ended|strftime(time_format) }} |
| Duration | {{ test.phases|sum(attribute='report.duration')|timedelta }} |
| 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|default(extra.format_type, true) }} |
{% if extra.format_type == 'image' %}
{{ extra.content|escape }}
{% elif extra.format_type == 'json' %}
{{ extra.content|tojson(indent=2) }}
{% elif extra.format_type == 'url' %}
{{ extra.content|urlize }}
{% else %}
?
{% endif %}
|
{{ phase.call.excinfo.exconly(tryshort=True)|ansi|safe }}
Unsupported plot type: {{ plot.type }}
{% endif %}{{ phase.report.longreprtext|ansi|safe }}
{{ content|escape|replace('\r\n', '\n')|ansi|safe }}