We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1097a5 commit 6c6cb8bCopy full SHA for 6c6cb8b
tests/unit/storage_clients/_redis/test_redis_rq_client.py
@@ -26,7 +26,7 @@ async def rq_client(
26
suppress_user_warning: None, # noqa: ARG001
27
) -> AsyncGenerator[RedisRequestQueueClient, None]:
28
"""A fixture for a Redis RQ client."""
29
- if request.param == 'bloom' and sys.platform == 'win32' and sys.version_info >= (3, 14):
+ if request.param == 'bloom' and sys.version_info >= (3, 14):
30
pytest.skip('Bloom filters not supported on Windows with Python 3.14 and fakeredis')
31
32
client = await RedisStorageClient(redis=redis_client, queue_dedup_strategy=request.param).create_rq_client(
0 commit comments