Skip to content

Commit

Permalink
TS-40724 Show stderr for during testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik Klein committed Nov 18, 2024
1 parent 11f4bd3 commit c755b85
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ extensions.runtime.targetPlatforms.get().each { targetPlatform ->
}
from(readmeFilePath) {
// rename copied file to "Readme.md"
rename (oldFilename -> "README.md")
rename(oldFilename -> "README.md")
into "${application.applicationName}"
}
}
Expand All @@ -141,4 +141,8 @@ test {
// Don't run the integration test for the graal-vm distribution artifact here. (This is the jlink build.)
excludeTestsMatching('com.teamscale.upload.NativeImageIT')
}
testLogging {
outputs.upToDateWhen { false }
showStandardStreams = true
}
}

0 comments on commit c755b85

Please sign in to comment.