File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 24
24
// propagate proxy URL to tests, to then propagate it to nested Gradle builds
25
25
environment " MAVEN_REPOSITORY_PROXY" , project. property(" mavenRepositoryProxy" )
26
26
}
27
-
28
- // Overriding the default timeout as Gradle smoke tests might run for a longer duration.
29
- timeout = Duration . of(20 , ChronoUnit . MINUTES )
30
27
}
31
28
Original file line number Diff line number Diff line change @@ -75,8 +75,8 @@ tasks.withType(Test).configureEach {
75
75
exclude(" **/*ForkedTest*" )
76
76
}
77
77
78
- // Set test timeout for 15 minutes. Default job timeout is 1h (configured on CI level).
79
- timeout = Duration . of(15 , ChronoUnit . MINUTES )
78
+ // Set test timeout for 20 minutes. Default job timeout is 1h (configured on CI level).
79
+ timeout = Duration . of(20 , ChronoUnit . MINUTES )
80
80
81
81
check. dependsOn(it)
82
82
}
You can’t perform that action at this time.
0 commit comments