I have a project with different tes tasks. They maybe contain same testclasses which run against different environments. Can I create the html report per test task?
I have tried:
project.tasks.withType(Test).each {
Test test-> test.reports.html.destination = file(“build/myreports/”+ test.name) }
but that doesn’t work
Do I have an error in my Buildfile or have I found a bug?