We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33a06e9 commit ff7eee5Copy full SHA for ff7eee5
tests/test_cz_base.py
@@ -1,5 +1,3 @@
1
-from typing import Optional
2
-
3
import pytest
4
5
from commitizen.cz.base import BaseCommitizen, ValidationResult
@@ -12,8 +10,8 @@ def questions(self):
12
10
def message(self, answers: dict):
13
11
return answers["commit"]
14
15
- def schema_pattern(self) -> Optional[str]:
16
- return None
+ def schema_pattern(self) -> str:
+ return ".*"
17
18
19
def test_base_raises_error(config):
0 commit comments