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 b4eb421 commit 043e298Copy full SHA for 043e298
tests/integrations/threading/test_threading.py
@@ -1,4 +1,5 @@
1
import gc
2
+import sys
3
from concurrent import futures
4
from threading import Thread
5
@@ -124,6 +125,9 @@ def run(self):
124
125
assert unreachable_objects == 0
126
127
128
+@pytest.mark.skipif(
129
+ sys.version_info < (3, 7), reason="Test requires Python 3.7 or higher"
130
+)
131
def test_double_patching(sentry_init, capture_events):
132
sentry_init(default_integrations=False, integrations=[ThreadingIntegration()])
133
events = capture_events()
0 commit comments