Skip to content

Commit

Permalink
Fix changelog check
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Nov 15, 2024
1 parent 6a3274e commit 002975c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def test_changelog():
content = PROJECT_ROOT.joinpath("changelog.md").read_text(**encoding_args)
assert content.startswith("# Changelog\n")

entry_pattern = re.compile(r"^- \\\[(?P<category>[a-z,\-]+)\\\] (?P<entry>.+)")
entry_pattern = re.compile(r"^- \\\[(?P<category>[a-z0-9,\-]+)\\\] (?P<entry>.+)")

allowed_categories = set(
(
Expand Down

0 comments on commit 002975c

Please sign in to comment.