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
2 changes: 2 additions & 0 deletions scripts/populate_tox/tox.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ deps =
# for justification of the upper bound on pytest
{py3.6,py3.7}-common: pytest<7.0.0
{py3.8,py3.9,py3.10,py3.11,py3.12,py3.13,py3.14,py3.14t}-common: pytest
# coverage 7.11.1-7.11.3 makes some of our tests flake
{py3.14,py3.14t}-common: coverage==7.11.0
# === Gevent ===
{py3.6,py3.7,py3.8,py3.9,py3.10,py3.11}-gevent: gevent>=22.10.0, <22.11.0
Expand Down
1 change: 0 additions & 1 deletion tests/profiler/test_transaction_profiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,6 @@ 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
1 change: 0 additions & 1 deletion tests/tracing/test_decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ 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
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,8 @@ deps =
# for justification of the upper bound on pytest
{py3.6,py3.7}-common: pytest<7.0.0
{py3.8,py3.9,py3.10,py3.11,py3.12,py3.13,py3.14,py3.14t}-common: pytest
# coverage 7.11.1-7.11.3 makes some of our tests flake
{py3.14,py3.14t}-common: coverage==7.11.0

# === Gevent ===
{py3.6,py3.7,py3.8,py3.9,py3.10,py3.11}-gevent: gevent>=22.10.0, <22.11.0
Expand Down