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 6da8086 commit 699ec35Copy full SHA for 699ec35
tests/test_asyncio/conftest.py
@@ -39,14 +39,14 @@ async def _get_info(redis_url):
39
pytest.param(
40
(True, PythonParser),
41
marks=pytest.mark.skipif(
42
- REDIS_INFO["cluster_enabled"], reason="cluster mode enabled"
+ 'REDIS_INFO["cluster_enabled"]', reason="cluster mode enabled"
43
),
44
45
(False, PythonParser),
46
47
(True, HiredisParser),
48
49
- not HIREDIS_AVAILABLE or REDIS_INFO["cluster_enabled"],
+ not HIREDIS_AVAILABLE or 'REDIS_INFO["cluster_enabled"]',
50
reason="hiredis is not installed or cluster mode enabled",
51
52
0 commit comments