Tags:
{% for tag in test.tags %}
{{ tag }}
{% endfor %}
{% endif %}
Description: {{ test.description }}
{% for key, value in test.items() %}
{% if key not in ['title', 'status', 'duration', 'nodeid', 'tags', 'description'] %}
{{ key|replace('_', ' ')|capitalize }}:
{% if value is iterable and value is not string %}
{% for item in value %}
{{ item }}{% if not loop.last %}, {% endif %}
{% endfor %}
{% else %}
{{ value }}
{% endif %}