@@ -71,20 +71,18 @@ def __call__(self):
71
71
if not commits :
72
72
raise NoCommitsFoundError (f"No commit found with range: '{ self .rev_range } '" )
73
73
74
- pattern = self .cz .schema_pattern ()
75
- displayed_msgs_content = "\n " .join (
76
- [
77
- f'commit "{ commit .rev } ": "{ commit .message } "'
78
- for commit in commits
79
- if not self .validate_commit_message (commit .message , pattern )
80
- ]
74
+ pattern = re .compile (self .cz .schema_pattern ())
75
+ invalid_msgs_content = "\n " .join (
76
+ f'commit "{ commit .rev } ": "{ commit .message } "'
77
+ for commit in commits
78
+ if not self ._validate_commit_message (commit .message , pattern )
81
79
)
82
- if displayed_msgs_content :
80
+ if invalid_msgs_content :
83
81
raise InvalidCommitMessageError (
84
82
"commit validation: failed!\n "
85
83
"please enter a commit message in the commitizen format.\n "
86
- f"{ displayed_msgs_content } \n "
87
- f"pattern: { pattern } "
84
+ f"{ invalid_msgs_content } \n "
85
+ f"pattern: { pattern . pattern } "
88
86
)
89
87
out .success ("Commit validation: successful!" )
90
88
@@ -135,14 +133,18 @@ def _filter_comments(msg: str) -> str:
135
133
lines .append (line )
136
134
return "\n " .join (lines )
137
135
138
- def validate_commit_message (self , commit_msg : str , pattern : str ) -> bool :
136
+ def _validate_commit_message (
137
+ self , commit_msg : str , pattern : re .Pattern [str ]
138
+ ) -> bool :
139
139
if not commit_msg :
140
140
return self .allow_abort
141
141
142
142
if any (map (commit_msg .startswith , self .allowed_prefixes )):
143
143
return True
144
+
144
145
if self .max_msg_length :
145
146
msg_len = len (commit_msg .partition ("\n " )[0 ].strip ())
146
147
if msg_len > self .max_msg_length :
147
148
return False
148
- return bool (re .match (pattern , commit_msg ))
149
+
150
+ return bool (pattern .match (commit_msg ))
0 commit comments