I used to have a task to create an aggregated test...
# community-support
e
I used to have a task to create an aggregated test report from all test suite types, described here It seems that since 8.13, the concept of test suite types has been removed. Is it correct that test suites can only be aggregated per test suite name now?
p
Yes
e
So there's no way to combine reports for multiple test suites anymore? Feels like a regression 😞
v
There probably is, just not as clean I guess. But didn't play with that in newer versions yet.
But I guess they just removed the test type as you anyway have to invent a 1:1 test suite to test type naming, so now use test suite name directly.
👍 1
p
There is a test report aggregation plugin: https://docs.gradle.org/current/userguide/test_report_aggregation_plugin.html#test_report_aggregation_plugin that uses the testsuute name
v
So probably you just add the outgoing variants for an additional virtual test suite name instead for an additional virtual test type
e
right, makes sense.. think I can make that work 🤞
v
Yeah, from a very cursory look at the sources, this was the change and should conceptually work like before
e
Huh, it was that easy 😮
Never would've figured it out without your input tho, thanks a lot!
👌 1
p
First time I heard the word easy in combination with Gradle.
😂 2
v
It's all easy, if you know how to do it 😄
Like with anything 😄
But yes, that minimal change would also have been what I would have expected 🙂