A filter matches test runs by a number of criteria.
{{ form.non_field_errors }}
-
Metadata:
-
{{ form.name.errors }}
{{ form.name.label_tag }}: {{ form.name }}
{{ form.name.help_text|safe }}
{{ form.public.errors }}
{{ form.public }}{{ form.public.label_tag }}
{{ form.public.help_text|safe }}
-
{{ form.bundle_streams.label_tag }}:
-
{{ form.bundle_streams.errors }}
{{ form.bundle_streams }}
{{ form.bundle_streams.help_text|safe }}
-
Build Number:
-
{{ form.build_number_attribute.errors }}
{{ form.build_number_attribute.label_tag }}: {{ form.build_number_attribute }}
{{ form.build_number_attribute.help_text|safe }}
-
Attributes:
-
{% with form.attributes_formset as formset %}
Name
|
Value
|
{{ formset.management_form }}
{% for form in formset %}
{{ form.name }}
|
{{ form.value }}
|
|
{% empty %}
{% endfor %}
{% with formset.empty_form as form %}
{{ form.name }}
|
{{ form.value }}
|
|
{% endwith %}
{% endwith %}
A filter can be limited to test runs with particular values for particular attributes.
-
Tests and test cases:
-
{% with form.tests_formset as formset %}
Test
|
Test Cases
|
{{ formset.management_form }}
{% for form in formset %}
{% include "dashboard_app/filter_form_test.html" %}
{% empty %}
{% endfor %}
{% with formset.empty_form as form %}
{% include "dashboard_app/filter_form_test.html" %}
{% endwith %}
{% endwith %}