From 1776f8cabb1c08c6a303777227d8508fc76919ce Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sun, 6 Feb 2022 15:08:54 +0100 Subject: [PATCH] bpo-46648: Skip test_urllib2.test_issue16464() (GH-31161) POST requests to http://www.example.com/ fail randomly. (cherry picked from commit 1578de2fcd685c71f9c84e09bac32901dea192c1) Co-authored-by: Victor Stinner --- Lib/test/test_urllib2.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py index 160315394094fa..b77f90a6ccbf17 100644 --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -1785,6 +1785,8 @@ class MyOtherHTTPHandler(urllib.request.HTTPHandler): @unittest.skipUnless(support.is_resource_enabled('network'), 'test requires network access') + # bpo-46648: test fails randomly with "http://www.example.com/" URL + @unittest.skipIf(True, "POST request to http://www.example.com/ fail randomly") def test_issue16464(self): with support.transient_internet("http://www.example.com/"): opener = urllib.request.build_opener()