Skip to content

Commit a76e358

Browse files
Add newline to parse Markdown properly
The GitHub parser will not render markdown if it's too close to the HTML tags. Adding an extra newline will fix the issue with the Markdown not being parsed properly
1 parent eae6392 commit a76e358

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

templates/test_results_message.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@
2020
2121
{% endfor %}
2222
</details>{% else %}:white_check_mark: All tests successful. No failed tests were found.{% endif %}
23+
2324
:mega: Thoughts on this report? [Let Codecov know!](https://github.com/codecov/feedback/issues/304) | Powered by [Codecov](https://about.codecov.io/)

tests/test_failure_message.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ def test_build_message_no_failures():
7272
res = build_message(payload)
7373

7474
assert res == """:white_check_mark: All tests successful. No failed tests were found.
75+
7576
:mega: Thoughts on this report? [Let Codecov know!](https://github.com/codecov/feedback/issues/304) | Powered by [Codecov](https://about.codecov.io/)"""
7677

7778

@@ -171,4 +172,5 @@ def test_build_message():
171172
172173
173174
</details>
175+
174176
:mega: Thoughts on this report? [Let Codecov know!](https://github.com/codecov/feedback/issues/304) | Powered by [Codecov](https://about.codecov.io/)"""

0 commit comments

Comments
 (0)