Skip to content

Commit

Permalink
Skip test_gethostbyaddr on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
saghul committed Oct 7, 2023
1 parent fb608a2 commit 86cf7cd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 86cf7cd

Please sign in to comment.