We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5603db4 commit c88407cCopy full SHA for c88407c
Lib/test/test_urllib2.py
@@ -1790,6 +1790,8 @@ class MyOtherHTTPHandler(urllib.request.HTTPHandler):
1790
1791
@unittest.skipUnless(support.is_resource_enabled('network'),
1792
'test requires network access')
1793
+ # bpo-46648: test fails randomly with "http://www.example.com/" URL
1794
+ @unittest.skipIf(True, "POST request to http://www.example.com/ fail randomly")
1795
def test_issue16464(self):
1796
with socket_helper.transient_internet("http://www.example.com/"):
1797
opener = urllib.request.build_opener()
0 commit comments