Skip to content

Commit 1c0dc4c

Browse files
committed
.
1 parent 2f079d2 commit 1c0dc4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integrations/threading/test_threading.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ def double(number):
107107

108108

109109
@pytest.mark.skipif(
110-
sys.version[:2] == [3, 8] and (1, 12) <= _OTEL_VERSION < (1, 15),
111-
reason="Fails in CI on 3.8 and specific OTel versions, works locally",
110+
sys.version[:3] == "3.8" and (1, 12) <= _OTEL_VERSION < (1, 15),
111+
reason="Fails in CI on 3.8 and specific OTel versions",
112112
)
113113
def test_circular_references(sentry_init, request):
114114
sentry_init(default_integrations=False, integrations=[ThreadingIntegration()])

0 commit comments

Comments
 (0)