Skip to content

Commit

Permalink
Switched on standard streams output in all test tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
jlink committed Mar 13, 2023
1 parent 2660b3e commit f3e7806
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ test {
junitXml.required = true
}

// testLogging.showStandardStreams = true
testLogging.showStandardStreams = showStandardStreams
}

dependencies {
Expand Down
2 changes: 2 additions & 0 deletions test-modular-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ java {

test {
useJUnitPlatform()

testLogging.showStandardStreams = showStandardStreams
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion time/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ test {
junitXml.required = true
}

// testLogging.showStandardStreams = true
testLogging.showStandardStreams = showStandardStreams
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion web/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ test {
junitXml.required = true
}

// testLogging.showStandardStreams = true
testLogging.showStandardStreams = showStandardStreams
}

dependencies {
Expand Down

0 comments on commit f3e7806

Please sign in to comment.