Make testHeadless output the same stuff as test from photon-lib (#2000)

This commit is contained in:
Gold856
2025-07-13 09:24:09 -04:00
committed by GitHub
parent 2e97c95be1
commit a62d5e0eee

View File

@@ -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 = "../"
}