diff --git a/tests.py b/tests.py index 572ca73..783a9ad 100755 --- a/tests.py +++ b/tests.py @@ -137,6 +137,7 @@ def test_gethostbyname(self): result = self.loop.run_until_complete(f) self.assertTrue(result) + @unittest.skipIf(sys.platform == 'win32', 'skipped on Windows') def test_gethostbyaddr(self): f = self.resolver.gethostbyaddr('127.0.0.1') result = self.loop.run_until_complete(f)