From af8a4bb866db9c4088e70c9e6b5c070f955ab84d Mon Sep 17 00:00:00 2001 From: cocolato Date: Mon, 15 Jul 2024 22:57:00 +0800 Subject: [PATCH] remove skip on windows --- tests/test_multiplexed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_multiplexed.py b/tests/test_multiplexed.py index 335a21f..7a2a8b0 100644 --- a/tests/test_multiplexed.py +++ b/tests/test_multiplexed.py @@ -78,7 +78,7 @@ def client_two(timeout=3000): socket_timeout=timeout, connect_timeout=timeout, proto_factory=multiplexing_factory) -@pytest.mark.skipif(sys.platform == "win32", "requires socket.UNIX") +@pytest.mark.skipif(sys.platform == "win32", reason="Unix domain socket required") def test_multiplexed_server(server): with client_one() as c: assert c.doThingOne() is True