From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 11 Dec 2025 01:01:59 +0000 (+0100) Subject: gh-140172: Skip JSON tools test during PGO training (GH-140809) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc705be468adc3f47f85b42f18f010e55f5c0e59;p=thirdparty%2FPython%2Fcpython.git gh-140172: Skip JSON tools test during PGO training (GH-140809) (cherry picked from commit fa448451abfabe7dbc969ef6468bedc4a8b8ecaf) Co-authored-by: Steve Dower --- diff --git a/Lib/test/test_json/test_tool.py b/Lib/test/test_json/test_tool.py index 30f9bb333160..7b5d217a2155 100644 --- a/Lib/test/test_json/test_tool.py +++ b/Lib/test/test_json/test_tool.py @@ -13,6 +13,7 @@ from _colorize import get_theme @support.requires_subprocess() +@support.skip_if_pgo_task class TestMain(unittest.TestCase): data = """ @@ -319,6 +320,7 @@ class TestMain(unittest.TestCase): @support.requires_subprocess() +@support.skip_if_pgo_task class TestTool(TestMain): module = 'json.tool'