Description

{{test_name}}

{{doc_class}}

{{doc_test}}

Status: {{status_title}}

{% if status in ('error', 'fail') %}
{% for traceback in tracebacks %} {%- if loop.index0 == 0 %}

Traceback (most recent call last):

{%- else %}

During handling of the above exception, another exception occurred:

{%- endif %}

{{traceback.name}}: {{traceback.title}} {%- if traceback.description %}

{{traceback.description}}
{%- endif %}

    {% for item in traceback %}
  • File {{item.filename}}, line {{item.lineno}}, in {{item.name}}:
    {%- for line in item.code_fragment %} {%- endfor %}
    Local vars
  • {% endfor %}
{% endfor %}
{% endif %} {% if status == 'skip' %}

Raison: {{reason|e}}

{% endif %}
{%- if console %}

Console

{{console|e}}
{% endif %} {%- if logs %}

Logs

{% for logger, level, message in logs %} {% endfor %}
Logger Level Message
{{logger|e}} {{level|e}} {{message|e}}
{%- endif %} {%- if images %}

Images

{%- for image in images %}
{%- if image.expected %} {%- endif %} {%- if image.rmse %} {%- endif %}
{%- if image.expected %}
{%- endif %} {%- if image.rmse %}
{%- endif %}
{%- endfor %}
{%- endif %} {%- if files %}

Fichiers joints

{%- for file in files %}

{{file.title}}

{%- endfor %}
{%- endif %}