Skip to content

Commit

Permalink
remove skip on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
cocolato committed Jul 15, 2024
1 parent d675431 commit af8a4bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_multiplexed.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit af8a4bb

Please sign in to comment.