Skip to content

Commit 1678ac2

Browse files
.
1 parent 817dc63 commit 1678ac2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/profiler/test_transaction_profiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +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.")
269+
@pytest.mark.skipif(sys.version_info >= (3, 14), reason="Test flakes blocking release.")
270270
def test_profile_captured(
271271
sentry_init,
272272
capture_envelopes,

tests/tracing/test_decorator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ async def test_trace_decorator_async():
7070

7171

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

0 commit comments

Comments
 (0)