Skip to content

Commit 01fd042

Browse files
jakob-kellerLee-W
authored andcommitted
test: skip test on Python 3.13 due to incompatible pre-commit hook mirrors-prettier
1 parent b06c8b6 commit 01fd042

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

tests/test_bump_create_commit_message.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,19 @@ def test_create_tag(test_input, expected):
2424
assert new_tag == expected
2525

2626

27-
@pytest.mark.parametrize("retry", (True, False))
27+
@pytest.mark.parametrize(
28+
"retry",
29+
(
30+
pytest.param(
31+
True,
32+
marks=pytest.mark.skipif(
33+
sys.version_info >= (3, 13),
34+
reason="mirrors-prettier is not supported with Python 3.13 or higher",
35+
),
36+
),
37+
False,
38+
),
39+
)
2840
@pytest.mark.usefixtures("tmp_commitizen_project")
2941
def test_bump_pre_commit_changelog(mocker: MockFixture, freezer, retry):
3042
freezer.move_to("2022-04-01")

0 commit comments

Comments
 (0)