diff --git a/build.gradle b/build.gradle index b56c518937..83e038662c 100644 --- a/build.gradle +++ b/build.gradle @@ -569,6 +569,11 @@ task integrationTest(type: Test) { } } +tasks.named("integrationTest") { + minHeapSize = "512m" + maxHeapSize = "2g" +} + tasks.integrationTest.finalizedBy(jacocoTestReport) // report is always generated after integration tests run //run the integrationTest task before the check task