Bundle streams
|
{% for stream in summary_data.bundle_streams.all %}
{{stream.pathname}}{% if not forloop.last %}, {% endif %}
{% endfor %}
|
{% if summary_data.attributes %}
Attributes
|
{% for a in summary_data.attributes %}
{{ a.0 }} == {{ a.1 }}
{% endfor %}
|
{% endif %}
{% if summary_data.build_number_attribute %}
Build Number Attribute
|
{{ summary_data.build_number_attribute }}
|
{% endif %}
Test cases
|
{% for test in summary_data.tests %}
{{ test.test }}
|
{% for test_case in test.all_case_names %}
{{ test_case }}
{% empty %}
any
{% endfor %}
|
{% endfor %}
|