From 7c6410359d87c5ec4afe7b746da821b94bb36866 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mos=C3=A8=20Giordano?= Date: Wed, 22 May 2024 20:13:30 +0100 Subject: [PATCH] [CI] Longer sleep --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 26a24a817c..a4500b2dfb 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -45,5 +45,5 @@ jobs: size = i * 1024 ** 2 * 1024 print(f"I am about to allocate {size / 1024 ** 3} GiB of memory", flush=True) a = bytearray(size) - time.sleep(5) + time.sleep(20) a