We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df217ee commit 9195805Copy full SHA for 9195805
sample-resource-plugin/build.gradle
@@ -95,12 +95,10 @@ sourceSets {
95
96
tasks.register("integrationTest", Test) {
97
doFirst {
98
- if (System.getenv('DISABLE_RETRY') != 'true') {
99
- retry {
100
- failOnPassedAfterRetry = false
101
- maxRetries = 2
102
- maxFailures = 5
103
- }
+ retry {
+ failOnPassedAfterRetry = false
+ maxRetries = 5
+ maxFailures = 5
104
}
105
106
description = 'Run integration tests for the subproject.'
@@ -115,3 +113,8 @@ tasks.register("integrationTest", Test) {
115
113
tasks.named("integrationTest").configure {
116
114
dependsOn rootProject.tasks.named("compileIntegrationTestJava")
117
+
+tasks.named("integrationTest") {
118
+ minHeapSize = "512m"
119
+ maxHeapSize = "2g"
120
+}
0 commit comments