gradle-test-logger-plugin icon indicating copy to clipboard operation
gradle-test-logger-plugin copied to clipboard

Add support for reducing the amount of information

Open ansman opened this issue 1 year ago • 0 comments

Description

We use the parallel themes since we allow parallel test runs, this leads to the log statements being very long due to Develocity (Gradle Enterprise):

Test Run :path:to:some:module:testUnitTest > Partition 1 in session 1 on localhost-executor-1 > SomeTestClass > [parameter = false] ✔ the test method name[parameter = false]

We don't really care about the module/task path nor the partition, session or executor. So I'd love to be able to get this down to:

SomeTestClass > [parameter = false] ✔ the test method name[parameter = false]
```

ansman avatar Sep 16 '24 13:09 ansman