Skip to content

Commit 86cf7cd

Browse files
committed
Skip test_gethostbyaddr on Windows
1 parent fb608a2 commit 86cf7cd

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

tests.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ def test_gethostbyname(self):
137137
result = self.loop.run_until_complete(f)
138138
self.assertTrue(result)
139139

140+
@unittest.skipIf(sys.platform == 'win32', 'skipped on Windows')
140141
def test_gethostbyaddr(self):
141142
f = self.resolver.gethostbyaddr('127.0.0.1')
142143
result = self.loop.run_until_complete(f)

0 commit comments

Comments
 (0)