diff --git a/tests/test_asyncio/test_connection_pool.py b/tests/test_asyncio/test_connection_pool.py index e446f68d..2b7813fe 100644 --- a/tests/test_asyncio/test_connection_pool.py +++ b/tests/test_asyncio/test_connection_pool.py @@ -9,7 +9,6 @@ from valkey.asyncio.connection import Connection from valkey.utils import SSL_AVAILABLE - from .compat import aclosing, mock from .conftest import asynccontextmanager from .test_pubsub import wait_for_message @@ -543,6 +542,7 @@ def test_extra_querystring_options(self): assert pool.connection_class == valkey.UnixDomainSocketConnection assert pool.connection_kwargs == {"path": "/socket", "a": "1", "b": "2"} + @pytest.mark.skipif(not SSL_AVAILABLE, reason="SSL not installed") class TestSSLConnectionURLParsing: def test_host(self):