diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-09-02 04:45:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-02 04:45:34 (GMT) |
commit | f3ba0a74cd50274acdcd592d4ce8395b92492b7c (patch) | |
tree | 761e44f1d648492afdb821e7a309558b31578bc9 /Lib/test/test_email/test_email.py | |
parent | aa52888e6a0269f0c31a24bd0d1adb3238147261 (diff) | |
download | cpython-f3ba0a74cd50274acdcd592d4ce8395b92492b7c.zip cpython-f3ba0a74cd50274acdcd592d4ce8395b92492b7c.tar.gz cpython-f3ba0a74cd50274acdcd592d4ce8395b92492b7c.tar.bz2 |
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.
Diffstat (limited to 'Lib/test/test_email/test_email.py')
-rw-r--r-- | Lib/test/test_email/test_email.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_email/test_email.py b/Lib/test/test_email/test_email.py index cdb6ef1..2a23709 100644 --- a/Lib/test/test_email/test_email.py +++ b/Lib/test/test_email/test_email.py @@ -38,6 +38,7 @@ from email import iterators from email import quoprimime from email import utils +from test import support from test.support import threading_helper from test.support.os_helper import unlink from test.test_email import openfile, TestEmailBase @@ -3358,6 +3359,7 @@ Foo self.assertEqual(addrs[0][1], 'aperson@dom.ain') @threading_helper.requires_working_threading() + @support.requires_resource('cpu') def test_make_msgid_collisions(self): # Test make_msgid uniqueness, even with multiple threads class MsgidsThread(Thread): |