1
0

Inject import DisplayNAme statement
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) Failing after 22s

This commit is contained in:
Jon Michael Aanes 2025-02-28 09:08:59 +01:00
parent 04b5522e7f
commit b3b514992d

View File

@ -74,6 +74,14 @@ def replace_test_pattern(match: re.Match, with_javadoc: bool, with_display_name:
with_javadoc=with_javadoc,
with_display_name=with_display_name)
IMPORT_DISPLAY_NAME = 'import org.junit.jupiter.api.DisplayName;'
def standardize_java_text(text: str, with_javadoc: bool, with_display_name: bool):
return TEST_PATTERN.sub(lambda m: replace_test_pattern(m, with_javadoc, with_display_name), text)
text = TEST_PATTERN.sub(lambda m: replace_test_pattern(m, with_javadoc, with_display_name), text)
if '@DisplayName' in text and IMPORT_DISPLAY_NAME not in text:
lines = text.split('\n')
lines.insert(1, IMPORT_DISPLAY_NAME)
text = '\n'.join(lines)
del lines
return text