diff --git a/tests/functional/ext/private_import/private_import.py b/tests/functional/ext/private_import/private_import.py index a73e69e758..14a3fcd328 100644 --- a/tests/functional/ext/private_import/private_import.py +++ b/tests/functional/ext/private_import/private_import.py @@ -79,8 +79,8 @@ def c2_func() -> _TypeContainerC.C: # This is allowed since all the imports are used for typing from _TypeContainerExtra import TypeExtraA, TypeExtraB from MakerContainerExtra import GetA, GetB -extraA: TypeExtraA = GetA() -extraB: TypeExtraB = GetB() +extra_a: TypeExtraA = GetA() +extra_b: TypeExtraB = GetB() # This is not allowed because there is an import not used for typing from _TypeContainerExtra2 import TypeExtra2, NotTypeExtra # [import-private-name] diff --git a/tests/functional/ext/private_import/private_import.rc b/tests/functional/ext/private_import/private_import.rc index 5920812a5c..c24cd6520c 100644 --- a/tests/functional/ext/private_import/private_import.rc +++ b/tests/functional/ext/private_import/private_import.rc @@ -1,2 +1,3 @@ [MAIN] load-plugins=pylint.extensions.private_import, +const-naming-style=snake_case diff --git a/tests/functional/f/function_redefined.py b/tests/functional/f/function_redefined.py index a87c79680a..b6e6b52499 100644 --- a/tests/functional/f/function_redefined.py +++ b/tests/functional/f/function_redefined.py @@ -122,7 +122,7 @@ def callback2(): return 24 return callback1(), callback2() -do_something: Callable[[], int] +do_something: Callable[[], int] # pylint: disable=invalid-name def do_something() -> int: return 1 diff --git a/tests/functional/g/generic_alias/generic_alias_collections.py b/tests/functional/g/generic_alias/generic_alias_collections.py index 33f6b6e2c3..23c3abd587 100644 --- a/tests/functional/g/generic_alias/generic_alias_collections.py +++ b/tests/functional/g/generic_alias/generic_alias_collections.py @@ -110,7 +110,7 @@ class CustomImplementation(CustomAbstractCls2): # [abstract-method,abstract-met # Type annotations var_tuple: tuple[int, int] var_dict: dict[int, str] -var_orderedDict: collections.OrderedDict[int, str] +var_ordereddict: collections.OrderedDict[int, str] var_container: collections.abc.Container[int] var_sequence: collections.abc.Sequence[int] var_iterable: collections.abc.Iterable[int] diff --git a/tests/functional/g/generic_alias/generic_alias_collections.rc b/tests/functional/g/generic_alias/generic_alias_collections.rc index 16b75eea75..2da346c6dc 100644 --- a/tests/functional/g/generic_alias/generic_alias_collections.rc +++ b/tests/functional/g/generic_alias/generic_alias_collections.rc @@ -1,2 +1,5 @@ [testoptions] min_pyver=3.9 + +[MAIN] +const-naming-style=snake_case diff --git a/tests/functional/g/generic_alias/generic_alias_collections_py37.rc b/tests/functional/g/generic_alias/generic_alias_collections_py37.rc index d584aa9595..6cf11011bc 100644 --- a/tests/functional/g/generic_alias/generic_alias_collections_py37.rc +++ b/tests/functional/g/generic_alias/generic_alias_collections_py37.rc @@ -1,2 +1,5 @@ [testoptions] max_pyver=3.9 + +[MAIN] +const-naming-style=snake_case diff --git a/tests/functional/g/generic_alias/generic_alias_collections_py37_with_typing.rc b/tests/functional/g/generic_alias/generic_alias_collections_py37_with_typing.rc index d584aa9595..6cf11011bc 100644 --- a/tests/functional/g/generic_alias/generic_alias_collections_py37_with_typing.rc +++ b/tests/functional/g/generic_alias/generic_alias_collections_py37_with_typing.rc @@ -1,2 +1,5 @@ [testoptions] max_pyver=3.9 + +[MAIN] +const-naming-style=snake_case diff --git a/tests/functional/g/generic_alias/generic_alias_mixed_py39.py b/tests/functional/g/generic_alias/generic_alias_mixed_py39.py index 9c6e63e661..dcfed966b8 100644 --- a/tests/functional/g/generic_alias/generic_alias_mixed_py39.py +++ b/tests/functional/g/generic_alias/generic_alias_mixed_py39.py @@ -9,7 +9,7 @@ import typing # Type annotations -var_orderedDict: collections.OrderedDict[int, str] +var_ordered_dict: collections.OrderedDict[int, str] var_container: collections.abc.Container[int] var_sequence: collections.abc.Sequence[int] var_iterable: collections.abc.Iterable[int] @@ -17,7 +17,7 @@ var_pattern: re.Pattern[int] var_bytestring: collections.abc.ByteString var_hashable: collections.abc.Hashable -var_ContextManager: contextlib.AbstractContextManager[int] +var_context_manager: contextlib.AbstractContextManager[int] # No implementation required for 'builtins' diff --git a/tests/functional/g/generic_alias/generic_alias_mixed_py39.rc b/tests/functional/g/generic_alias/generic_alias_mixed_py39.rc index 16b75eea75..2da346c6dc 100644 --- a/tests/functional/g/generic_alias/generic_alias_mixed_py39.rc +++ b/tests/functional/g/generic_alias/generic_alias_mixed_py39.rc @@ -1,2 +1,5 @@ [testoptions] min_pyver=3.9 + +[MAIN] +const-naming-style=snake_case diff --git a/tests/functional/r/regression_02/regression_3979.py b/tests/functional/r/regression_02/regression_3979.py index e14c5edb53..5e29ffbdca 100644 --- a/tests/functional/r/regression_02/regression_3979.py +++ b/tests/functional/r/regression_02/regression_3979.py @@ -10,4 +10,4 @@ else: BasePathLike = os.PathLike -Foo: Union[str, BasePathLike] = "bar" +SOME_VAR: Union[str, BasePathLike] = "bar" diff --git a/tests/functional/t/type/typealias_naming_style_default.py b/tests/functional/t/type/typealias_naming_style_default.py index 6a2c81569b..2da8210f24 100644 --- a/tests/functional/t/type/typealias_naming_style_default.py +++ b/tests/functional/t/type/typealias_naming_style_default.py @@ -27,8 +27,8 @@ # Regression tests # They are not TypeAlias, and thus shouldn't flag the message -x: Union[str, int] = 42 -y: Union[str, int] +X: Union[str, int] = 42 +Y: Union[str, int] # But the following, using a good TypeAlias name, is: GoodTypeAliasToUnion: TypeAlias = Union[str, int] diff --git a/tests/functional/u/unsubscriptable_value_py37.py b/tests/functional/u/unsubscriptable_value_py37.py index acbbe6bdd8..25fcdc4cd7 100644 --- a/tests/functional/u/unsubscriptable_value_py37.py +++ b/tests/functional/u/unsubscriptable_value_py37.py @@ -14,4 +14,4 @@ def __class_getitem__(cls, params): Subscriptable[0] Subscriptable()[0] # [unsubscriptable-object] -a: typing.List[int] +A: typing.List[int] diff --git a/tests/functional/u/unused/unused_import_py39.py b/tests/functional/u/unused/unused_import_py39.py index 2a897b1741..09e50fb300 100644 --- a/tests/functional/u/unused/unused_import_py39.py +++ b/tests/functional/u/unused/unused_import_py39.py @@ -7,4 +7,4 @@ import typing as t -example: t.Annotated[str, "Path"] = "/foo/bar" +EXAMPLE: t.Annotated[str, "Path"] = "/foo/bar" diff --git a/tests/functional/u/unused/unused_name_in_string_literal_type_annotation.py b/tests/functional/u/unused/unused_name_in_string_literal_type_annotation.py index 400e7725e0..ae86c6c4e1 100644 --- a/tests/functional/u/unused/unused_name_in_string_literal_type_annotation.py +++ b/tests/functional/u/unused/unused_name_in_string_literal_type_annotation.py @@ -8,7 +8,7 @@ from typing import NoReturn, Set # unused-import shouldn't be emitted for Path -example1: Set["Path"] = set() +EXAMPLE1: Set["Path"] = set() def example2(_: "ArgumentParser") -> "NoReturn": """unused-import shouldn't be emitted for ArgumentParser or NoReturn.""" @@ -22,9 +22,9 @@ def example4(_: "PathLike[str]") -> None: """unused-import shouldn't be emitted for PathLike.""" # pylint shouldn't crash with the following strings in a type annotation context -example5: Set[""] -example6: Set[" "] -example7: Set["?"] +EXAMPLE5: Set[""] +EXAMPLE6: Set[" "] +EXAMPLE7: Set["?"] class Class: """unused-import shouldn't be emitted for Namespace""" diff --git a/tests/functional/u/unused/unused_name_in_string_literal_type_annotation_py38.py b/tests/functional/u/unused/unused_name_in_string_literal_type_annotation_py38.py index 96658ae369..42d1e8c523 100644 --- a/tests/functional/u/unused/unused_name_in_string_literal_type_annotation_py38.py +++ b/tests/functional/u/unused/unused_name_in_string_literal_type_annotation_py38.py @@ -8,7 +8,7 @@ from typing import Literal as Lit # str inside Literal shouldn't be treated as names -example1: t.Literal["ArgumentParser", Lit["Namespace", "ArgumentParser"]] +EXAMPLE1: t.Literal["ArgumentParser", Lit["Namespace", "ArgumentParser"]] def unused_variable_example(): @@ -19,9 +19,9 @@ def unused_variable_example(): # pylint shouldn't crash with the following strings in a type annotation context -example3: Lit["", " ", "?"] = "?" +EXAMPLE3: Lit["", " ", "?"] = "?" # See https://peps.python.org/pep-0586/#literals-enums-and-forward-references -example4: t.Literal["http.HTTPStatus.OK", "http.HTTPStatus.NOT_FOUND"] -example5: "t.Literal[HTTPStatus.OK, HTTPStatus.NOT_FOUND]" +EXAMPLE4: t.Literal["http.HTTPStatus.OK", "http.HTTPStatus.NOT_FOUND"] +EXAMPLE5: "t.Literal[HTTPStatus.OK, HTTPStatus.NOT_FOUND]" diff --git a/tests/input/func_noerror_cycle/a.py b/tests/input/func_noerror_cycle/a.py index 85bd49e0ca..cb6eee7b5a 100644 --- a/tests/input/func_noerror_cycle/a.py +++ b/tests/input/func_noerror_cycle/a.py @@ -1,8 +1,8 @@ # pylint: disable=missing-docstring from typing import List -from .b import var +from .b import VAR LstT = List[int] -print(var) +print(VAR) diff --git a/tests/input/func_noerror_cycle/b.py b/tests/input/func_noerror_cycle/b.py index df17057fa4..a36e4be272 100644 --- a/tests/input/func_noerror_cycle/b.py +++ b/tests/input/func_noerror_cycle/b.py @@ -4,4 +4,4 @@ if TYPE_CHECKING: from .a import LstT -var: "LstT" = [1, 2] +VAR: "LstT" = [1, 2]