attempt to run full coverage

This commit is contained in:
Adam Brown 2022-12-07 21:31:35 +00:00
parent 5b6e0b4875
commit 121cfaf5bd
2 changed files with 2 additions and 1 deletions

@ -1 +1 @@
Subproject commit e76edf8bc5d5851fa213e094b48058e956e3e5ee
Subproject commit 2ac5fc22a562362acc8b4b4d527580221085971d

View File

@ -77,6 +77,7 @@ task allCodeCoverageReport(type: JacocoReport) {
rootProject.apply plugin: 'jacoco'
def projects = collectProjects { !it.name.contains("stub") && !it.name.contains("-noop") }
dependsOn { ["app:assembleDebug"] + projects*.test }
dependsOn gradle.includedBuild("chat-engine").task(":allCodeCoverageReport")
initializeReport(it, projects, excludes)
}