Slackbot
02/02/2023, 1:23 PMVampire
02/02/2023, 2:05 PMgradle.includedBuild("tooling").task(":task")
though.Fritjof Höst
02/02/2023, 2:48 PMFritjof Höst
02/03/2023, 9:52 AMtasks.register("testReport", TestReport.class) {
dependsOn test
destinationDirectory = file("$buildDir/reports/allTests")
// Include the results from the `test` task in all subprojects
var testList = (subprojects - [dependencyProject])*.test
testList.add(gradle.includedBuild("tooling").task(":test"))
testResults.from = testList
}
The above is obviously not working, but kind of shows what I want to do.Vampire
02/03/2023, 10:24 AMFritjof Höst
02/03/2023, 10:44 AMFritjof Höst
02/03/2023, 10:45 AMVampire
02/03/2023, 12:17 PMFritjof Höst
02/03/2023, 12:21 PM