From e5df832640fa581293c57c4d613406b9f2c40238 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristj=C3=A1n=20Valur=20J=C3=B3nsson?= Date: Mon, 27 Jun 2022 11:20:03 +0000 Subject: Split incorrect mark into two separate marks (#2253) --- tests/test_asyncio/conftest.py | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/tests/test_asyncio/conftest.py b/tests/test_asyncio/conftest.py index 52ff26b..8166588 100644 --- a/tests/test_asyncio/conftest.py +++ b/tests/test_asyncio/conftest.py @@ -45,10 +45,15 @@ async def _get_info(redis_url): (False, PythonParser), pytest.param( (True, HiredisParser), - marks=pytest.mark.skipif( - not HIREDIS_AVAILABLE or 'config.REDIS_INFO["cluster_enabled"]', - reason="hiredis is not installed or cluster mode enabled", - ), + marks=[ + pytest.mark.skipif( + 'config.REDIS_INFO["cluster_enabled"]', + reason="cluster mode enabled", + ), + pytest.mark.skipif( + not HIREDIS_AVAILABLE, reason="hiredis is not installed" + ), + ], ), pytest.param( (False, HiredisParser), -- cgit v1.2.1