Skip to content

Commit

Permalink
Restore testCoverageEnabled
Browse files Browse the repository at this point in the history
  • Loading branch information
sdsantos committed Dec 27, 2023
1 parent c8622af commit dfe0de8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ android {
}

buildTypes {
debug {
testCoverageEnabled true
}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
Expand Down
4 changes: 2 additions & 2 deletions app/jacoco.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ task jacocoAndroidTestReport(type: JacocoReport) {

reports {
html.required = true
html.destination file("${buildDir}/reports/coverage")
html.outputLocation = file("${buildDir}/reports/coverage")
xml.required = true
xml.destination file("${buildDir}/reports/coverage.xml")
xml.outputLocation = file("${buildDir}/reports/coverage.xml")
csv.required = false
}

Expand Down

0 comments on commit dfe0de8

Please sign in to comment.