Arx Cruz 1de4b1f627 Updating skip file mechanism
This way to load the skip file will allow a more concise format
to be consumed not only by the skip file itself but for other
scripts

Change-Id: I09130b0e46711e1e01a6b5b5077ae9249f01c597
2017-03-06 20:56:56 +01:00

11 lines
229 B
Django/Jinja

{% for skip_test in known_failures %}
# {{ skip_test.reason }}
{% if skip_test.bz is defined %}
# {{ skip_test.bz }}
{% endif %}
{% if skip_test.lp is defined %}
# {{ skip_test.lp }}
{% endif %}
{{ skip_test.test }}
{% endfor %}