From bffd3f42bf9f8490b9db6ce4e9bee4202df9ba89 Mon Sep 17 00:00:00 2001 From: Salvatore Mesoraca Date: Fri, 5 Jul 2024 17:37:18 +0200 Subject: [PATCH] Fix empty lines issues for CI Signed-off-by: Salvatore Mesoraca --- tests/test_asyncio/test_connection_pool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):