File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 22
33## 1.2.1 (unreleased)
44
5- - nothing yet
5+ - Fix test-script to not end with backslash if there is no ` testpaths ` (which is valid).
66
77## 1.2.0 (2025-06-04)
88
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ coverage run \
2626{% if omitpaths %}
2727 --omit=$omits \
2828{% endif %}
29- -m pytest \
29+ -m pytest {% if testpaths %} \{ % endif %}
3030{% for path in testpaths %}
3131 {{ path }}{% if not loop.last %} \{ % endif %}
3232
Original file line number Diff line number Diff line change 11{% extends " env.sh" %}
22
33{% block env_content %}
4- pytest \
4+
5+ pytest {% if testpaths %}\{ % endif %}
56{% for path in testpaths %}
67 {{ path }}{% if not loop.last %} \{ % endif %}
78
89{% endfor %}
10+
11+
12+
913{% endblock %}
You can’t perform that action at this time.
0 commit comments