From a50c5a1594e115501bb28abd94d2ec938e6e7828 Mon Sep 17 00:00:00 2001 From: James Procter Date: Tue, 4 Jul 2023 16:08:48 +0100 Subject: [PATCH] JAL-4110 - patch found on https://stackoverflow.com/questions/40954017/gradle-how-to-get-output-from-test-stderr-stdout-into-console --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index a47a7fd..57fc283 100644 --- a/build.gradle +++ b/build.gradle @@ -1830,6 +1830,7 @@ tasks.withType(Test).matching {t -> t.getName().startsWith("testTask")}.all { te showExceptions true showCauses true showStackTraces true + showStandardStreams true info.events = [ TestLogEvent.FAILED ] } -- 1.7.10.2