Skip to content

Commit 4c2f7d9

Browse files
committed
Removed some stuff again
1 parent 5bcba35 commit 4c2f7d9

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

scripts/populate_tox/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
],
4747
"<3.1": ["pytest-django<4.0"],
4848
">=2.0": ["channels[daphne]"],
49-
"py3.6": ["aiocontextvars"],
49+
# "py3.6": ["aiocontextvars"],
5050
},
5151
},
5252
"dramatiq": {

sentry_sdk/integrations/threading.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ def sentry_start(self, *a, **kw):
5757
return old_start(self, *a, **kw)
5858

5959
if integration.propagate_scope:
60+
# isolation_scope = sentry_sdk.get_isolation_scope()
61+
# current_scope = sentry_sdk.get_current_scope()
6062
isolation_scope = sentry_sdk.get_isolation_scope().fork()
6163
current_scope = sentry_sdk.get_current_scope().fork()
6264
else:

tests/integrations/threading/test_threading.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,6 @@ def target():
175175
assert t.run.__qualname__ == original_run.__qualname__
176176

177177

178-
@pytest.mark.forked
179178
@pytest.mark.parametrize(
180179
"propagate_scope",
181180
(True, False),
@@ -211,7 +210,6 @@ def do_some_work():
211210
}, "The isolation scope in the main thread should not be modified by the started thread."
212211

213212

214-
@pytest.mark.forked
215213
@pytest.mark.parametrize(
216214
"propagate_scope",
217215
(True, False),

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# The file (and all resulting CI YAMLs) then need to be regenerated via
1111
# "scripts/generate-test-files.sh".
1212
#
13-
# Last generated: 2025-04-14T08:42:32.681337+00:00
13+
# Last generated: 2025-04-14T10:33:01.506897+00:00
1414

1515
[tox]
1616
requires =
@@ -646,7 +646,6 @@ deps =
646646
django-v4.2.20: channels[daphne]
647647
django-v5.0.9: channels[daphne]
648648
django-v5.2: channels[daphne]
649-
py3.6-django: aiocontextvars
650649

651650
flask-v1.1.4: flask==1.1.4
652651
flask-v2.3.3: flask==2.3.3

0 commit comments

Comments
 (0)