1
0

Handle more keywords
Some checks failed
Run Python tests (through Pytest) / Test (push) Failing after 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 21s

This commit is contained in:
Jon Michael Aanes 2025-03-21 14:21:03 +01:00
parent a4dd2a3b9f
commit 00a37b9afb

View File

@ -87,6 +87,11 @@ IGNORABLE_WORDS_IN_NAME = frozenset(
'are',
'test',
'tests',
'that',
'these',
'those',
'it',
'its',
},
)
@ -134,6 +139,7 @@ def to_camel_case(description: str) -> str:
.replace('"', ' ')
.replace('+', ' ')
.replace('-', ' ')
.replace('#', ' ')
.replace(':', ' ')
.replace("'", '')
.strip(' \t.')