Revision: 12746
http://sourceforge.net/p/foray/code/12746
Author: victormote
Date: 2022-11-28 16:36:32 +0000 (Mon, 28 Nov 2022)
Log Message:
-----------
Remove logging of passed tests.
Modified Paths:
--------------
trunk/foray/buildSrc/src/main/groovy/foray.test-conventions.gradle
Modified: trunk/foray/buildSrc/src/main/groovy/foray.test-conventions.gradle
===================================================================
--- trunk/foray/buildSrc/src/main/groovy/foray.test-conventions.gradle 2022-11-27 20:54:31 UTC (rev 12745)
+++ trunk/foray/buildSrc/src/main/groovy/foray.test-conventions.gradle 2022-11-28 16:36:32 UTC (rev 12746)
@@ -1,4 +1,4 @@
-/* Precompiled script plugin for FOray library projects that use JUnit tests. */
+/* Precompiled script plugin for FOray projects that use JUnit tests. */
plugins {
id 'foray.common-conventions'
@@ -15,7 +15,8 @@
test {
useJUnitPlatform()
testLogging {
- events "passed", "skipped", "failed"
+ /* Don't log "passed" events, as it is too much noise. */
+ events "skipped", "failed"
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|