Skip to content

Commit 4db7783

Browse files
remove forking
1 parent 4ac8df8 commit 4db7783

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

tests/test_ai_integration_deactivation.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ def test_integration_deactivates_map_exists():
3838
assert "anthropic" in _INTEGRATION_DEACTIVATES["langchain"]
3939

4040

41-
@pytest.mark.forked
4241
def 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
6159
def 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
7774
def 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
9389
def 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
112107
def 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
130124
def 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
148141
def 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
167159
def 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
198189
def 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
217207
def test_only_auto_enabling_integrations_without_defaults(
218208
sentry_init, reset_integrations
219209
):

0 commit comments

Comments
 (0)