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 2dc679d commit af9e92dCopy full SHA for af9e92d
tests/integrations/threading/test_threading.py
@@ -1,5 +1,4 @@
1
import gc
2
-import sys
3
from concurrent import futures
4
from threading import Thread
5
@@ -125,9 +124,6 @@ def run(self):
125
124
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