https://github.com/python/cpython/commit/502a99a7e66adc095842addfb366bba6953f34a1 commit: 502a99a7e66adc095842addfb366bba6953f34a1 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: carljm <[email protected]> date: 2024-06-24T13:44:06Z summary:
[3.13] gh-120373: Mark test_audit.test_http as requiring the network resource (GH-120374) (#120948) gh-120373: Mark test_audit.test_http as requiring the network resource (GH-120374) (cherry picked from commit b0e1c51882e3a129d1e4db8291f7a0d869d6f1d6) Co-authored-by: Itamar Oren <[email protected]> files: M Lib/test/test_audit.py diff --git a/Lib/test/test_audit.py b/Lib/test/test_audit.py index 321d4f9abce8c7..7206307d8b0664 100644 --- a/Lib/test/test_audit.py +++ b/Lib/test/test_audit.py @@ -140,6 +140,7 @@ def test_gc(self): ) + @support.requires_resource('network') def test_http(self): import_helper.import_module("http.client") returncode, events, stderr = self.run_python("test_http_client") _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
