Skip to content

Commit fea9875

Browse files
committed
eyeroll
1 parent 6d66863 commit fea9875

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

tests/integrations/threading/test_threading.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
import sentry_sdk
1010
from sentry_sdk import capture_message
1111
from sentry_sdk.integrations.threading import ThreadingIntegration
12-
from sentry_sdk.tracing import _OTEL_VERSION
1312

1413
original_start = Thread.start
1514
original_run = Thread.run
@@ -106,10 +105,7 @@ def double(number):
106105
assert len(event["spans"]) == 0
107106

108107

109-
@pytest.mark.skipif(
110-
sys.version[:3] == "3.8" and (1, 12) <= _OTEL_VERSION < (1, 16),
111-
reason="Fails in CI on 3.8 and specific OTel versions",
112-
)
108+
@pytest.mark.skipif(sys.version[:3] == "3.8", reason="Fails in CI on 3.8")
113109
def test_circular_references(sentry_init, request):
114110
sentry_init(default_integrations=False, integrations=[ThreadingIntegration()])
115111

0 commit comments

Comments
 (0)