From 839ea1e77859268c522e13f34e377c7c5945e465 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Sat, 28 Jun 2025 11:36:17 -0500 Subject: [PATCH] increase ram amount for unit tests needed for compression tests --- core/build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/core/build.gradle b/core/build.gradle index 71b548b4b..8a0c953f3 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -61,3 +61,9 @@ shadowJar { // relocate "it.unimi.dsi.fastutil", "${librariesLocation}.unimi.dsi.fastutil" mergeServiceFiles() } + +test { + // this is necessary specifically for the Compression tests since those + // need more than the default 512 MB of RAM + jvmArgs '-Xmx4096m' +}