We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bbc13e commit bc03c6aCopy full SHA for bc03c6a
tests/integrations/threading/test_threading.py
@@ -2,6 +2,7 @@
2
from concurrent import futures
3
from textwrap import dedent
4
from threading import Thread
5
+import sys
6
7
import pytest
8
@@ -104,6 +105,7 @@ def double(number):
104
105
assert len(event["spans"]) == 0
106
107
108
+@pytest.mark.skipif(sys.version_info[:2] == [3, 8], reason="Fails in CI")
109
def test_circular_references(sentry_init, request):
110
sentry_init(default_integrations=False, integrations=[ThreadingIntegration()])
111
0 commit comments