From cc705be468adc3f47f85b42f18f010e55f5c0e59 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Thu, 11 Dec 2025 02:01:59 +0100 Subject: [PATCH] gh-140172: Skip JSON tools test during PGO training (GH-140809) (cherry picked from commit fa448451abfabe7dbc969ef6468bedc4a8b8ecaf) Co-authored-by: Steve Dower --- Lib/test/test_json/test_tool.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/test/test_json/test_tool.py b/Lib/test/test_json/test_tool.py index 30f9bb33316..7b5d217a215 100644 --- a/Lib/test/test_json/test_tool.py +++ b/Lib/test/test_json/test_tool.py @@ -13,6 +13,7 @@ @support.requires_subprocess() +@support.skip_if_pgo_task class TestMain(unittest.TestCase): data = """ @@ -319,6 +320,7 @@ def test_colors(self): @support.requires_subprocess() +@support.skip_if_pgo_task class TestTool(TestMain): module = 'json.tool'