From 5524a37bbb2880657ac363c987dfda8f2ffc54d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mos=C3=A8=20Giordano?= Date: Wed, 22 May 2024 13:41:36 +0100 Subject: [PATCH] [CI] Even smaller memory allocations --- .github/workflows/test.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index bef3f8e236..4c6da4096c 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -17,9 +17,11 @@ jobs: import time from datetime import datetime + print("Hello, world!") + for i in range(5): print(str(datetime.now())) - size = i * 1024 ** 3 + size = i * 1024 ** 2 * 256 print(f"I am about to allocate {size / 1024 ** 3} GiB of memory") a = bytearray(size) time.sleep(10)