bpo-35518: Skip test that relies on a deceased network service. (GH-15349)
authorGreg Price <gnprice@gmail.com>
Wed, 21 Aug 2019 03:50:51 +0000 (20:50 -0700)
committerBenjamin Peterson <benjamin@python.org>
Wed, 21 Aug 2019 03:50:50 +0000 (20:50 -0700)
If this service had thoroughly vanished, we could just ignore the
test until someone gets around to either recreating such a service
or redesigning the test to somehow work locally.  The
`support.transient_internet` mechanism catches the failure to
resolve the domain name, and skips the test.

But in fact the domain snakebite.net does still exist, as do its
nameservers -- and they can be quite slow to reply.  As a result
this test can easily take 20-30s before it gets auto-skipped.

So, skip the test explicitly up front.

Lib/test/test_timeout.py

index b54fc826ae0aa70c7875ca67e3f52cc43f14f1f4..b07c07cbfc4df6c1bc6521855852f4517ef3a123 100644 (file)
@@ -150,6 +150,7 @@ class TCPTimeoutTestCase(TimeoutTestCase):
     def tearDown(self):
         self.sock.close()
 
+    @unittest.skipIf(True, 'need to replace these hosts; see bpo-35518')
     def testConnectTimeout(self):
         # Testing connect timeout is tricky: we need to have IP connectivity
         # to a host that silently drops our packets.  We can't simulate this