From: Nice Zombies Date: Mon, 17 Jun 2024 22:18:51 +0000 (+0200) Subject: gh-120560: Mark `zip64` tests in `test_zipimport` as CPU-heavy (GH-120564) X-Git-Tag: v3.14.0a1~1445 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ac37a806018cc40fafebcd0fa90250c3e0261e0c;p=thirdparty%2FPython%2Fcpython.git gh-120560: Mark `zip64` tests in `test_zipimport` as CPU-heavy (GH-120564) --- diff --git a/Lib/test/test_zipimport.py b/Lib/test/test_zipimport.py index e9c3218d2bb3..0bae54d26c64 100644 --- a/Lib/test/test_zipimport.py +++ b/Lib/test/test_zipimport.py @@ -807,10 +807,12 @@ class UncompressedZipImportTestCase(ImportHooksBaseTestCase): files = {TESTMOD + ".py": (NOW, test_src)} self.doTest(".py", files, TESTMOD, comment=b"c" * ((1 << 16) - 1)) + @support.requires_resource('cpu') def testZip64(self): files = self.getZip64Files() self.doTest(".py", files, "f6") + @support.requires_resource('cpu') def testZip64CruftAndComment(self): files = self.getZip64Files() self.doTest(".py", files, "f65536", comment=b"c" * ((1 << 16) - 1))