From cd78fd489fa5f388bc5be5e306621f7d2ba15c63 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sun, 13 Jun 2021 10:06:16 -1000 Subject: [PATCH] Disable flakey ipv6 win32 test --- tests/services/test_types.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/services/test_types.py b/tests/services/test_types.py index 845e20f8..e8e9911f 100644 --- a/tests/services/test_types.py +++ b/tests/services/test_types.py @@ -7,6 +7,7 @@ import os import unittest import socket +import sys import zeroconf as r from zeroconf import Zeroconf, ServiceInfo, ZeroconfServiceTypes @@ -78,7 +79,7 @@ def test_integration_with_listener_v6_records(self): finally: zeroconf_registrar.close() - @unittest.skipIf(not has_working_ipv6(), 'Requires IPv6') + @unittest.skipIf(not has_working_ipv6() or sys.platform == 'win32', 'Requires IPv6') @unittest.skipIf(os.environ.get('SKIP_IPV6'), 'IPv6 tests disabled') def test_integration_with_listener_ipv6(self):