Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions scripts/populate_tox/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@
"Werkzeug<2.1.0",
],
"<3.1": ["pytest-django<4.0"],
"py3.14,py3.14t": ["coverage==7.11.0"],
},
},
"dramatiq": {
Expand Down
1 change: 1 addition & 0 deletions tests/profiler/test_transaction_profiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@ def test_minimum_unique_samples_required(


@pytest.mark.forked
@pytest.mark.skipif(sys.version_info >= (3, 14), reason="Test flakes blocking release.")
def test_profile_captured(
sentry_init,
capture_envelopes,
Expand Down
2 changes: 2 additions & 0 deletions tests/tracing/test_decorator.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import inspect
import sys
from unittest import mock

import pytest
Expand Down Expand Up @@ -69,6 +70,7 @@ async def test_trace_decorator_async():


@pytest.mark.asyncio
@pytest.mark.skipif(sys.version_info >= (3, 14), reason="Test flakes blocking release.")
async def test_trace_decorator_async_no_trx():
with patch_start_tracing_child(fake_transaction_is_none=True):
with mock.patch.object(logger, "debug", mock.Mock()) as fake_debug:
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -622,6 +622,7 @@ deps =
django-v3.2.25: Werkzeug<2.1.0
django-v1.11.29: pytest-django<4.0
django-v2.2.28: pytest-django<4.0
{py3.14,py3.14t}-django: coverage==7.11.0

flask-v1.1.4: flask==1.1.4
flask-v2.3.3: flask==2.3.3
Expand Down