@@ -38,7 +38,6 @@ def test_integration_deactivates_map_exists():
3838 assert "anthropic" in _INTEGRATION_DEACTIVATES ["langchain" ]
3939
4040
41- @pytest .mark .forked
4241def test_langchain_auto_deactivates_openai_and_anthropic (
4342 sentry_init , reset_integrations
4443):
@@ -57,7 +56,6 @@ def test_langchain_auto_deactivates_openai_and_anthropic(
5756 assert AnthropicIntegration not in integration_types
5857
5958
60- @pytest .mark .forked
6159def test_user_can_override_with_explicit_openai (sentry_init , reset_integrations ):
6260 sentry_init (
6361 default_integrations = False ,
@@ -73,7 +71,6 @@ def test_user_can_override_with_explicit_openai(sentry_init, reset_integrations)
7371 assert OpenAIIntegration in integration_types
7472
7573
76- @pytest .mark .forked
7774def test_user_can_override_with_explicit_anthropic (sentry_init , reset_integrations ):
7875 sentry_init (
7976 default_integrations = False ,
@@ -89,7 +86,6 @@ def test_user_can_override_with_explicit_anthropic(sentry_init, reset_integratio
8986 assert AnthropicIntegration in integration_types
9087
9188
92- @pytest .mark .forked
9389def test_user_can_override_with_both_explicit_integrations (
9490 sentry_init , reset_integrations
9591):
@@ -108,7 +104,6 @@ def test_user_can_override_with_both_explicit_integrations(
108104 assert AnthropicIntegration in integration_types
109105
110106
111- @pytest .mark .forked
112107def test_disabling_langchain_allows_openai_and_anthropic (
113108 sentry_init , reset_integrations
114109):
@@ -126,7 +121,6 @@ def test_disabling_langchain_allows_openai_and_anthropic(
126121 assert LangchainIntegration not in integration_types
127122
128123
129- @pytest .mark .forked
130124def test_explicit_langchain_still_deactivates_others (sentry_init , reset_integrations ):
131125 sentry_init (
132126 default_integrations = False ,
@@ -144,7 +138,6 @@ def test_explicit_langchain_still_deactivates_others(sentry_init, reset_integrat
144138 assert AnthropicIntegration not in integration_types
145139
146140
147- @pytest .mark .forked
148141def test_langchain_and_openai_both_explicit_both_active (
149142 sentry_init , reset_integrations
150143):
@@ -163,7 +156,6 @@ def test_langchain_and_openai_both_explicit_both_active(
163156 assert OpenAIIntegration in integration_types
164157
165158
166- @pytest .mark .forked
167159def test_no_langchain_means_openai_and_anthropic_can_auto_enable (
168160 sentry_init , reset_integrations , monkeypatch
169161):
@@ -194,7 +186,6 @@ def filtered_iter(with_auto_enabling):
194186 assert LangchainIntegration not in integration_types
195187
196188
197- @pytest .mark .forked
198189def test_deactivation_with_default_integrations_enabled (
199190 sentry_init , reset_integrations
200191):
@@ -213,7 +204,6 @@ def test_deactivation_with_default_integrations_enabled(
213204 assert AnthropicIntegration not in integration_types
214205
215206
216- @pytest .mark .forked
217207def test_only_auto_enabling_integrations_without_defaults (
218208 sentry_init , reset_integrations
219209):
0 commit comments