From c755b85ee1048f130bae78ad76b86a8df59478e2 Mon Sep 17 00:00:00 2001 From: Dominik Klein Date: Mon, 18 Nov 2024 10:29:07 +0100 Subject: [PATCH] TS-40724 Show stderr for during testing --- build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index f11aaa3..ae77bc3 100644 --- a/build.gradle +++ b/build.gradle @@ -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}" } } @@ -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 + } }