Skip to content

Commit ba3e3b1

Browse files
authored
chore: Relax Redis tests for Windows with Python 3.14 (#1624)
### Description - Relax Redis tests for Windows with Python 3.14 ### Issues - Closes: #1554
1 parent 33e2ba9 commit ba3e3b1

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

tests/unit/storage_clients/_redis/test_redis_rq_client.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import asyncio
44
import json
5-
import sys
65
from typing import TYPE_CHECKING
76

87
import pytest
@@ -26,10 +25,6 @@ async def rq_client(
2625
suppress_user_warning: None, # noqa: ARG001
2726
) -> AsyncGenerator[RedisRequestQueueClient, None]:
2827
"""A fixture for a Redis RQ client."""
29-
# TODO: https://github.com/apify/crawlee-python/issues/1554
30-
if request.param == 'bloom' and sys.platform == 'win32' and sys.version_info >= (3, 14):
31-
pytest.skip('Bloom filters not supported on Windows with Python 3.14 and fakeredis')
32-
3328
client = await RedisStorageClient(redis=redis_client, queue_dedup_strategy=request.param).create_rq_client(
3429
name='test_request_queue'
3530
)

uv.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)