Skip to content

Commit

Permalink
Fix Jacoco
Browse files Browse the repository at this point in the history
  • Loading branch information
vbabenkoru committed Nov 18, 2023
1 parent 0b1d72a commit 1c33d9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ dependencies {

tasks.withType(Test) {
jacoco.includeNoLocationClasses = true
jacoco.excludes = ['jdk.internal.*']
}

task jacocoDebugTestReport(type: JacocoReport, dependsOn: ['testDebugUnitTest']) {
Expand Down
1 change: 1 addition & 0 deletions iterableapi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ task javadoc(type: Javadoc) {

tasks.withType(Test) {
jacoco.includeNoLocationClasses = true
jacoco.excludes = ['jdk.internal.*']
}

task checkstyle(type: Checkstyle) {
Expand Down

0 comments on commit 1c33d9d

Please sign in to comment.