From 00a37b9afb2c97695c170f7aa1caa1d1cdbd1e26 Mon Sep 17 00:00:00 2001 From: Jon Michael Aanes Date: Fri, 21 Mar 2025 14:21:03 +0100 Subject: [PATCH] Handle more keywords --- standardize_test_format/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/standardize_test_format/__init__.py b/standardize_test_format/__init__.py index f3b7e3e..b8e29a6 100644 --- a/standardize_test_format/__init__.py +++ b/standardize_test_format/__init__.py @@ -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.')