Skip to content

Commit ae75dd5

Browse files
committed
test: add test for 'additional' types in conventional commits
1 parent 073dd45 commit ae75dd5

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

‎tests/test_bump_find_increment.py

+7
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,12 @@
4141
"fix(setup.py): future is now required for every python version",
4242
]
4343

44+
MAJOR_INCREMENTS_EXCLAMATION_OTHER_TYPE_CC = [
45+
"chore!: drop support for Python 3.9",
46+
"docs(README): motivation",
47+
"fix(setup.py): future is now required for every python version",
48+
]
49+
4450
PATCH_INCREMENTS_SVE = ["readme motivation PATCH", "fix setup.py PATCH"]
4551

4652
MINOR_INCREMENTS_SVE = [
@@ -67,6 +73,7 @@
6773
(MINOR_INCREMENTS_CC, "MINOR"),
6874
(MAJOR_INCREMENTS_BREAKING_CHANGE_CC, "MAJOR"),
6975
(MAJOR_INCREMENTS_BREAKING_CHANGE_ALT_CC, "MAJOR"),
76+
(MAJOR_INCREMENTS_EXCLAMATION_OTHER_TYPE_CC, "MAJOR"),
7077
(MAJOR_INCREMENTS_EXCLAMATION_CC, "MAJOR"),
7178
(NONE_INCREMENT_CC, None),
7279
),

0 commit comments

Comments
 (0)