Skip to content

Commit

Permalink
chore: Exclude VSS Processor Plugin from Code Coverage Report
Browse files Browse the repository at this point in the history
  • Loading branch information
wba2hi committed Mar 1, 2024
1 parent 7c1da7a commit e6cbf9f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -147,15 +147,16 @@ tasks.create("jacocoRootReport", JacocoReport::class.java) {

reports {
html.required.set(true)
xml.required.set(true)
xml.required.set(false)
csv.required.set(false)
}

val excludes = listOf(
"**/buildSrc/**",
"**/app/**",
"**/samples/**",
"**/build/**/org/eclipse/kuksa/vss/**", // generated
"**/vssprocessor/plugin/**", // code coverage not supported for Gradle Plugins / Gradle TestKit tests
"**/build/**/org/eclipse/kuksa/vss/**", // generated code
"**/test*/**/*.*",
)

Expand Down
1 change: 0 additions & 1 deletion vss-processor/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ plugins {
kotlin("jvm")
publish
alias(libs.plugins.dokka)
jacoco
}

val versionPath = rootProject.ext[VERSION_FILE_DEFAULT_PATH_KEY] as String
Expand Down

0 comments on commit e6cbf9f

Please sign in to comment.