test #432

Merged
klaus merged 17 commits from test into main 2026-07-07 18:07:28 +00:00
Showing only changes of commit 936e472d51 - Show all commits

View File

@@ -99,15 +99,15 @@ tasks.withType<KotlinCompile> {
}
}
tasks.withType<Test>().configureEach {
maxParallelForks = 1
forkEvery = 100
tasks.withType<Test> {
useJUnitPlatform()
maxHeapSize = "1024m"
val springContextCacheMaxSize = (project.findProperty("test.springContextCacheMaxSize") as String?) ?: "1"
maxHeapSize = (project.findProperty("testMaxHeap") as String?) ?: "1536m"
jvmArgs(
"-XX:MaxMetaspaceSize=512m",
"-Dfile.encoding=UTF-8"
"-Dfile.encoding=UTF-8",
"-Dspring.test.context.cache.maxSize=$springContextCacheMaxSize"
)
}