Skip to content

Commit 3add9a1

Browse files
committed
🧪 Hide allow-any-unimported granularly @ tests
1 parent ab8a32e commit 3add9a1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

‎tests/managed_credential_plugins_test.py‎

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
"""Individual ManagedCredentialType plugin tests."""
2-
# FIXME: ManagedCredentialType type not found.
3-
# mypy: allow-any-unimported
42
import configparser
53
import json
64
from dataclasses import dataclass
@@ -507,7 +505,8 @@ def check(
507505
),
508506
)
509507
# pylint: disable-next=too-many-arguments, too-many-positional-arguments
510-
def test_credential_plugins( # noqa: WPS211
508+
# FIXME: Type ignore below due to ManagedCredentialType type not found.
509+
def test_credential_plugins( # type: ignore[no-any-unimported] # noqa: WPS211
511510
cred_type: ManagedCredentialType,
512511
inputs: CredentialInputType,
513512
expected_env: dict[str, str],

0 commit comments

Comments
 (0)