Skip to content

Commit

Permalink
fix(test): set jacoco excludes for engine-test's unitTest and integra…
Browse files Browse the repository at this point in the history
…tionTest tasks

upgrade to jacoco 0.8.8 (from 0.8.5)

relates to #4985
  • Loading branch information
keturn committed May 12, 2022
1 parent 685a895 commit ea430c3
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions config/gradle/common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,11 @@ test {
dependsOn rootProject.extractNatives
}

jacoco {
excludes = ["org.terasology.protobuf.*",
"*MethodAccess","*FieldAccess"]
}
jacoco.excludes = ["org.terasology.protobuf.*", "*MethodAccess", "*FieldAccess"]
}

jacoco {
toolVersion = "0.8.5"
toolVersion = "0.8.8"
}

jacocoTestReport {
Expand Down

0 comments on commit ea430c3

Please sign in to comment.