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