From a62d5e0eeec7b4d905216c1f6a9ff31d7ec3656e Mon Sep 17 00:00:00 2001 From: Gold856 <117957790+Gold856@users.noreply.github.com> Date: Sun, 13 Jul 2025 09:24:09 -0400 Subject: [PATCH] Make testHeadless output the same stuff as test from photon-lib (#2000) --- shared/common.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/shared/common.gradle b/shared/common.gradle index 9f3386c2c..d8db6106d 100644 --- a/shared/common.gradle +++ b/shared/common.gradle @@ -64,6 +64,11 @@ tasks.register('testHeadless', Test) { group = "verification" systemProperty("java.awt.headless", "true") useJUnitPlatform() + testLogging { + events "passed", "skipped", "failed", "standardOut", "standardError" + exceptionFormat "full" + showStandardStreams = true + } exclude '**/*BenchmarkTest*' workingDir = "../" }