gradle-test-logger-plugin
gradle-test-logger-plugin copied to clipboard
Add support for reducing the amount of information
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]
```