diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-09-05 17:56:30 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-05 17:56:30 +0300 |
commit | 1e0d62793a84001e92f1c80b511d3a212b435acc (patch) | |
tree | 0735827fe13611176e9dc41cdacde06dba79be7b /Lib/test/test_faulthandler.py | |
parent | f980cc19b9cafc09ef21e906871f810a1c89e62f (diff) | |
download | cpython-1e0d62793a84001e92f1c80b511d3a212b435acc.tar.gz cpython-1e0d62793a84001e92f1c80b511d3a212b435acc.zip |
gh-108416: Mark slow but not CPU bound test methods with requires_resource('walltime') (GH-108480)
Diffstat (limited to 'Lib/test/test_faulthandler.py')
-rw-r--r-- | Lib/test/test_faulthandler.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_faulthandler.py b/Lib/test/test_faulthandler.py index 907c2cda86c..3c1e8c150ae 100644 --- a/Lib/test/test_faulthandler.py +++ b/Lib/test/test_faulthandler.py @@ -683,6 +683,7 @@ class FaultHandlerTests(unittest.TestCase): with tempfile.TemporaryFile('wb+') as fp: self.check_dump_traceback_later(fd=fp.fileno()) + @support.requires_resource('walltime') def test_dump_traceback_later_twice(self): self.check_dump_traceback_later(loops=2) |