Skip to content

Commit 5cb5702

Browse files
authored
Disable flakey ServiceTypesQuery ipv6 win32 test (#586)
1 parent 12f5676 commit 5cb5702

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/services/test_types.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import os
88
import unittest
99
import socket
10+
import sys
1011

1112
import zeroconf as r
1213
from zeroconf import Zeroconf, ServiceInfo, ZeroconfServiceTypes
@@ -78,7 +79,7 @@ def test_integration_with_listener_v6_records(self):
7879
finally:
7980
zeroconf_registrar.close()
8081

81-
@unittest.skipIf(not has_working_ipv6(), 'Requires IPv6')
82+
@unittest.skipIf(not has_working_ipv6() or sys.platform == 'win32', 'Requires IPv6')
8283
@unittest.skipIf(os.environ.get('SKIP_IPV6'), 'IPv6 tests disabled')
8384
def test_integration_with_listener_ipv6(self):
8485

0 commit comments

Comments
 (0)