Files
sunnypilot/common/tests/test_markdown.py
github-actions[bot] c84db1b2e5 sunnypilot v2026.07.06-4555
version: sunnypilot v2026.002.000 (feature-branch)
date: 2026-07-06T15:58:09
master commit: f5087f238a
2026-07-06 15:58:09 +00:00

16 lines
399 B
Python

import os
from openpilot.common.basedir import BASEDIR
from openpilot.common.markdown import parse_markdown
class TestMarkdown:
def test_all_release_notes(self):
with open(os.path.join(BASEDIR, "CHANGELOG.md")) as f:
release_notes = f.read().split("\n\n")
assert len(release_notes) > 10
for rn in release_notes:
md = parse_markdown(rn)
assert len(md) > 0