1
0

Don't add multiple dots at end of line
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-05 16:34:27 +01:00
parent ccbb18f275
commit 8cc861b6b1

View File

@ -64,7 +64,8 @@ TEST_PATTERN: re.Pattern = re.compile(
re.IGNORECASE, re.IGNORECASE,
) )
END_SYMBOLS = '.?!' END_SYMBOLS_SET = ('.','?','!')
END_SYMBOLS = ''.join(END_SYMBOLS_SET)
IGNORABLE_WORDS_IN_NAME = frozenset( IGNORABLE_WORDS_IN_NAME = frozenset(
{ {
@ -97,7 +98,7 @@ def format_test_prefix(
if with_javadoc: if with_javadoc:
str_builder += ['/** '] str_builder += ['/** ']
str_builder += [description] str_builder += [description]
if not description.endswith(END_SYMBOLS): if not description.endswith(END_SYMBOLS_SET):
str_builder += ['.'] str_builder += ['.']
str_builder += [' */', '\n'] str_builder += [' */', '\n']