Skip to content

Commit 622d834

Browse files
committed
Reduce Gradle max workers to 2 in integration tests
1 parent d5dd247 commit 622d834

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ buildscript {
2121

2222
apply(from: "dependencies.gradle")
2323

24-
def applicationPort = project.hasProperty('port') ? project.getProperty('port').toInteger() : 8080
25-
2624
allprojects {
2725
apply(plugin: "io.spring.dependency-management")
2826
apply(plugin: "org.barfuin.gradle.jacocolog")

scripts/integration_tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ function main() {
7474
${UAA_GRADLE_INT_TEST_COMMAND:-integrationTest} \
7575
--no-watch-fs \
7676
--no-daemon \
77-
--max-workers=4 \
77+
--max-workers=2 \
7878
--stacktrace \
7979
--console=plain"
8080

0 commit comments

Comments
 (0)