Skip to content

Commit

Permalink
Took out the androidDebugTest portions of the jacoco task.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewvora committed Apr 7, 2017
1 parent bc6d2ce commit 0e4be4d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jacoco {
reportsDir = file("$buildDir/jacocoReports")
}

task jacocoTestReport(type: JacocoReport, dependsOn: ['testDebugUnitTest', 'createDebugCoverageReport']) {
task jacocoTestReport(type: JacocoReport, dependsOn: ['testDebugUnitTest']) {

reports {
xml.enabled = true
Expand All @@ -104,7 +104,6 @@ task jacocoTestReport(type: JacocoReport, dependsOn: ['testDebugUnitTest', 'crea
sourceDirectories = files([mainSrc])
classDirectories = files([debugTree])
executionData = fileTree(dir: "$buildDir", includes: [
"jacoco/testDebugUnitTest.exec",
"outputs/code-coverage/connected/*coverage.ec"
"jacoco/testDebugUnitTest.exec"
])
}

0 comments on commit 0e4be4d

Please sign in to comment.