Skip to content

Commit

Permalink
[CI] Slightly larger memory allocations
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano authored May 22, 2024
1 parent 5524a37 commit 28d5b5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
for i in range(5):
print(str(datetime.now()))
size = i * 1024 ** 2 * 256
size = i * 1024 ** 2 * 512
print(f"I am about to allocate {size / 1024 ** 3} GiB of memory")
a = bytearray(size)
time.sleep(10)
Expand Down

0 comments on commit 28d5b5f

Please sign in to comment.