Skip to content

Commit

Permalink
test: test using new way of setting enabled in reports
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgerardojacinto committed Nov 9, 2023
1 parent d8cf2ed commit 842aad6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,10 @@ android {
task jacocoTestReport(type: JacocoReport, dependsOn: ['testDebugUnitTest']) {

reports {
xml.enabled = true
html.enabled = true
//xml.enabled = true
//html.enabled = true
xml.getRequired().set(true)
html.getRequired().set(true)
}

def fileFilter = ['**/BuildConfig.*', '**/Manifest*.*']
Expand Down

0 comments on commit 842aad6

Please sign in to comment.