From d30d1e6f26f366b53357f0c8b97aa9e9287ea076 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sat, 30 Dec 2023 14:36:59 +1100 Subject: [PATCH] Increase timeout to 45s --- Tests/test_imagefontpil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/test_imagefontpil.py b/Tests/test_imagefontpil.py index 54ccad2a35d..cf66978fd90 100644 --- a/Tests/test_imagefontpil.py +++ b/Tests/test_imagefontpil.py @@ -64,7 +64,7 @@ def test_decompression_bomb(): font.getmask("A" * 1_000_000) -@pytest.mark.timeout(2) +@pytest.mark.timeout(45) def test_oom(): glyph = struct.pack(">hhhhhhhhhh", 1, 0, 0, 0, 32767, 32767, 0, 0, 32767, 32767) fp = BytesIO(b"PILfont\n\nDATA\n" + glyph * 256)