Sort and filter results
Sort tests by...
{% macro sort_option(id, name, order='', default=false) -%} {%- endmacro -%} {{ sort_option('status-sort', 'status', 'desc', default=true) }} {{ sort_option('collected-sort', 'collected', 'asc') }} {{ sort_option('test-name', 'name') }} {% if results.image_comparison -%} {{ sort_option('rms-sort', 'RMS', 'desc') }} {%- endif %}
Show tests which have...
{% macro filter_option(id, name) -%} {%- endmacro -%} {{ filter_option('overall-passed', 'passed') }} {{ filter_option('overall-failed', 'failed') }} {{ filter_option('overall-skipped', 'skipped') }}
{% if results.image_comparison -%}
{{ filter_option('image-match', 'matching images') }} {{ filter_option('image-diff', 'differing images') }} {{ filter_option('image-missing', 'no baseline image') }}
{%- endif %} {% if results.hash_comparison -%}
{{ filter_option('hash-match', 'matching hashes') }} {{ filter_option('hash-diff', 'differing hashes') }} {{ filter_option('hash-missing', 'no baseline hash') }}
{%- endif %}