From 9d10d699f3fbd2093433a0b34dd8f6595eb99db3 Mon Sep 17 00:00:00 2001 From: "Daniel A. Wozniak" Date: Mon, 28 Oct 2024 23:49:17 -0700 Subject: [PATCH] Skip tests that are not applicable on windows --- tests/pytests/unit/transport/test_tcp.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/pytests/unit/transport/test_tcp.py b/tests/pytests/unit/transport/test_tcp.py index 3ecc9bedf8f8..6d5c24b47300 100644 --- a/tests/pytests/unit/transport/test_tcp.py +++ b/tests/pytests/unit/transport/test_tcp.py @@ -705,6 +705,7 @@ def publish_payload(payload): assert p.call_count == 0 +@pytest.mark.skip_on_windows() async def test_pub_server_publisher_pull_path_perms(master_opts, io_loop, tmp_path): def publish_payload(payload): return payload @@ -730,6 +731,7 @@ def publish_payload(payload): assert p.call_args.args == (pubserv.pull_path, pubserv.pull_path_perms) +@pytest.mark.skip_on_windows() async def test_pub_server_publisher_pub_path_perms(master_opts, io_loop, tmp_path): def publish_payload(payload): return payload