bpo-35545: Skip test_asyncio.test_create_connection_ipv6_scope
on A… · python/cpython@32dda26 (original) (raw)
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1298,6 +1298,8 @@ def _test_create_connection_ip_addr(self, m_socket, allow_inet_pton): | ||
1298 | 1298 | t.close() |
1299 | 1299 | test_utils.run_briefly(self.loop) # allow transport to close |
1300 | 1300 | |
1301 | +@unittest.skipIf(sys.platform.startswith('aix'), | |
1302 | + "bpo-25545: IPv6 scope id and getaddrinfo() behave differently on AIX") | |
1301 | 1303 | @patch_socket |
1302 | 1304 | def test_create_connection_ipv6_scope(self, m_socket): |
1303 | 1305 | m_socket.getaddrinfo = socket.getaddrinfo |