increase ram amount for unit tests

needed for compression tests
This commit is contained in:
James Seibel
2025-06-28 11:36:17 -05:00
parent d2becd2c03
commit 839ea1e778
+6
View File
@@ -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'
}