From f3ba0a74cd50274acdcd592d4ce8395b92492b7c Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Sat, 2 Sep 2023 07:45:34 +0300 Subject: gh-108416: Mark slow test methods with @requires_resource('cpu') (GH-108421) Only mark tests which spend significant system or user time, by itself or in subprocesses. --- Lib/test/pickletester.py | 1 + 1 file changed, 1 insertion(+) (limited to 'Lib/test/pickletester.py') diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py index 6e87370c206..a687fe06290 100644 --- a/Lib/test/pickletester.py +++ b/Lib/test/pickletester.py @@ -2576,6 +2576,7 @@ class AbstractPickleTests: self.assertLess(pos - frameless_start, self.FRAME_SIZE_MIN) @support.skip_if_pgo_task + @support.requires_resource('cpu') def test_framing_many_objects(self): obj = list(range(10**5)) for proto in range(4, pickle.HIGHEST_PROTOCOL + 1): -- cgit v1.2.3