From ba5a9d80f0fa2409a806eb6676ffa2d102b5e0f1 Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Thu, 30 Oct 2025 20:42:11 +0000 Subject: [PATCH] gh-140172: Skip JSON tools test during PGO training --- 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 30f9bb3331605c..7b5d217a21558c 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'