From: INADA Naoki Date: Tue, 17 Apr 2018 15:31:29 +0000 (+0900) Subject: bpo-33295: Skip test using missing external site (GH-6504) X-Git-Tag: v3.8.0a1~1952 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=36d56ea826caffbeac0fc0c6d90248b80516e33c;p=python bpo-33295: Skip test using missing external site (GH-6504) `test_urllib2net.OtherNetworkTests.test_sites_no_connection_close` used `http://www.imdb.com/` but it is moved to https so the test is not valid anymore. Skip test for the moment to allow CI to proceed. --- diff --git a/Lib/test/test_urllib2net.py b/Lib/test/test_urllib2net.py index 13e2dd5b78..15f73de9f0 100644 --- a/Lib/test/test_urllib2net.py +++ b/Lib/test/test_urllib2net.py @@ -177,6 +177,7 @@ class OtherNetworkTests(unittest.TestCase): opener.open(request) self.assertEqual(request.get_header('User-agent'),'Test-Agent') + @unittest.skip('XXX: http://www.imdb.com is gone') def test_sites_no_connection_close(self): # Some sites do not send Connection: close header. # Verify that those work properly. (#issue12576)