From d432ca6349c10b92468e258297f1721185b42a30 Mon Sep 17 00:00:00 2001 From: Nice Zombies Date: Sat, 15 Jun 2024 21:25:49 +0200 Subject: [PATCH] Mark as cpu heavy --- Lib/test/test_free_threading/test_dict.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_free_threading/test_dict.py b/Lib/test/test_free_threading/test_dict.py index f877582e6b565c..7219719079406a 100644 --- a/Lib/test/test_free_threading/test_dict.py +++ b/Lib/test/test_free_threading/test_dict.py @@ -10,9 +10,10 @@ from _testcapi import dict_version -from test.support import threading_helper +from test.support import requires_resource, threading_helper +@requires_resource('cpu') @threading_helper.requires_working_threading() class TestDict(TestCase): def test_racing_creation_shared_keys(self):