From 3af81bad99b108b6c63b6cdb173e1f9ed5dfb530 Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Mon, 21 Jul 2025 12:47:08 +0200 Subject: [PATCH] re-enable pytest skip if sockd is not available --- tests/http/test_40_socks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/http/test_40_socks.py b/tests/http/test_40_socks.py index 362e10c285..f119d8926c 100644 --- a/tests/http/test_40_socks.py +++ b/tests/http/test_40_socks.py @@ -35,7 +35,7 @@ from testenv import Env, CurlClient, Dante log = logging.getLogger(__name__) -# @pytest.mark.skipif(condition=not Env.has_sockd(), reason="missing sockd") +@pytest.mark.skipif(condition=not Env.has_sockd(), reason="missing sockd") class TestSocks: @pytest.fixture(scope='class')