Skip to content

Commit 6b76b44

Browse files
Merge branch 'master' into webb/run-ci
2 parents 2e31bc6 + 43c16c4 commit 6b76b44

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

tests/profiler/test_transaction_profiler.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,7 @@ def test_minimum_unique_samples_required(
266266

267267

268268
@pytest.mark.forked
269+
@pytest.mark.skipif(sys.version_info >= (3, 14), reason="Test flakes blocking release.")
269270
def test_profile_captured(
270271
sentry_init,
271272
capture_envelopes,

tests/tracing/test_decorator.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import inspect
2+
import sys
23
from unittest import mock
34

45
import pytest
@@ -69,6 +70,7 @@ async def test_trace_decorator_async():
6970

7071

7172
@pytest.mark.asyncio
73+
@pytest.mark.skipif(sys.version_info >= (3, 14), reason="Test flakes blocking release.")
7274
async def test_trace_decorator_async_no_trx():
7375
with patch_start_tracing_child(fake_transaction_is_none=True):
7476
with mock.patch.object(logger, "debug", mock.Mock()) as fake_debug:

0 commit comments

Comments
 (0)