From: Itamar Oren Date: Mon, 24 Jun 2024 13:18:46 +0000 (-0700) Subject: gh-120373: Mark test_audit.test_http as requiring the network resource (#120374) X-Git-Tag: v3.14.0a1~1352 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b0e1c51882e3a129d1e4db8291f7a0d869d6f1d6;p=thirdparty%2FPython%2Fcpython.git gh-120373: Mark test_audit.test_http as requiring the network resource (#120374) --- diff --git a/Lib/test/test_audit.py b/Lib/test/test_audit.py index 321d4f9abce8..7206307d8b06 100644 --- a/Lib/test/test_audit.py +++ b/Lib/test/test_audit.py @@ -140,6 +140,7 @@ class AuditTest(unittest.TestCase): ) + @support.requires_resource('network') def test_http(self): import_helper.import_module("http.client") returncode, events, stderr = self.run_python("test_http_client")