JAL-629 Only log to console FAILED tests
authorBen Soares <b.soares@dundee.ac.uk>
Sat, 29 Apr 2023 23:29:12 +0000 (00:29 +0100)
committerBen Soares <b.soares@dundee.ac.uk>
Sat, 29 Apr 2023 23:29:12 +0000 (00:29 +0100)
build.gradle

index fd6064e..6a622c3 100644 (file)
@@ -1812,17 +1812,21 @@ tasks.withType(Test).matching {t -> t.getName().startsWith("testTask")}.all { te
     testTask.mustRunAfter "testTask0"
 
   testTask.testLogging { logging ->
-    events TestLogEvent.FAILED,
-      TestLogEvent.SKIPPED,
-      TestLogEvent.STANDARD_OUT,
-      TestLogEvent.STANDARD_ERROR
+    events TestLogEvent.FAILED
+//      TestLogEvent.SKIPPED,
+//      TestLogEvent.STANDARD_OUT,
+//      TestLogEvent.STANDARD_ERROR
 
     exceptionFormat TestExceptionFormat.FULL
     showExceptions true
     showCauses true
     showStackTraces true
+
+    info.events = [ TestLogEvent.FAILED ]
   }
 
+
+
   ignoreFailures = true // Always try to run all tests for all modules
 
   afterSuite { desc, result ->