2017-05-30 21:54:15 +08:00
{% for section in sections %}
{% set underline = "-" %}
{% if section %}
{{section}}
{{ underline * section|length }}{% set underline = "~" %}
{% endif %}
{% if sections[section] %}
2017-06-23 23:30:29 +08:00
{% for category, val in definitions.items() if category in sections[section] %}
2017-05-30 21:54:15 +08:00
{{ definitions[category]['name'] }}
{{ underline * definitions[category]['name']|length }}
{% if definitions[category]['showcontent'] %}
{% for text, values in sections[section][category]|dictsort(by='value') %}
2017-07-27 00:55:42 +08:00
{% set issue_joiner = joiner(', ') %}
2018-07-07 22:02:33 +08:00
- {% for value in values|sort %}{{ issue_joiner() }}`{{ value }} <https://github.com/pytest-dev/pytest/issues/{{ value[1:] }}> `_ {% endfor %}: {{ text }}
2017-05-30 21:54:15 +08:00
2017-05-31 05:15:31 +08:00
2017-05-30 21:54:15 +08:00
{% endfor %}
{% else %}
- {{ sections[section][category]['']|sort|join(', ') }}
{% endif %}
{% if sections[section][category]|length == 0 %}
No significant changes.
{% else %}
{% endif %}
{% endfor %}
{% else %}
No significant changes.
{% endif %}
{% endfor %}