Skip to content

Commit e5bbbc2

Browse files
Add temporary skip list
1 parent 3055936 commit e5bbbc2

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

tests/test_shadowed_module.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,19 @@ def test_shadowed_module(sentry_init):
5757
for _, submodule_name, _ in pkgutil.walk_packages(integrations.__path__):
5858
module_path = f"sentry_sdk.integrations.{submodule_name}"
5959

60+
# Temporary skip list
61+
if submodule_name in (
62+
"clickhouse_driver",
63+
"grpc",
64+
"litellm",
65+
"opentelemetry",
66+
"pure_eval",
67+
"ray",
68+
"trytond",
69+
"typer",
70+
):
71+
continue
72+
6073
try:
6174
importlib.import_module(module_path)
6275
continue

0 commit comments

Comments
 (0)