We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12f5676 commit 5cb5702Copy full SHA for 5cb5702
1 file changed
tests/services/test_types.py
@@ -7,6 +7,7 @@
7
import os
8
import unittest
9
import socket
10
+import sys
11
12
import zeroconf as r
13
from zeroconf import Zeroconf, ServiceInfo, ZeroconfServiceTypes
@@ -78,7 +79,7 @@ def test_integration_with_listener_v6_records(self):
78
79
finally:
80
zeroconf_registrar.close()
81
- @unittest.skipIf(not has_working_ipv6(), 'Requires IPv6')
82
+ @unittest.skipIf(not has_working_ipv6() or sys.platform == 'win32', 'Requires IPv6')
83
@unittest.skipIf(os.environ.get('SKIP_IPV6'), 'IPv6 tests disabled')
84
def test_integration_with_listener_ipv6(self):
85
0 commit comments