Skip to content

Commit 471820c

Browse files
committedApr 5, 2024·
fix: ignore example and benchmark in codecov
1 parent adc1069 commit 471820c

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed
 

‎.codecov.yml

+4
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,7 @@ coverage:
77

88
comment:
99
require_changes: true
10+
11+
ignore:
12+
- benchmark/**/*
13+
- example/**/*

‎build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ subprojects {
150150
koverReport {
151151
filters {
152152
excludes {
153-
classes("com.linecorp.kotlinjdsl.example.*")
154-
classes("com.linecorp.kotlinjdsl.benchmark.*")
153+
packages("com.linecorp.kotlinjdsl.example.*")
154+
packages("com.linecorp.kotlinjdsl.benchmark.*")
155155
}
156156
}
157157
}

‎libs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@ kotlin-noarg = { id = "org.jetbrains.kotlin.plugin.noarg", version.ref = "kotlin
5555
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
5656
kotlin-spring = { id = "org.jetbrains.kotlin.plugin.spring", version.ref = "kotlin" }
5757
kotlin-jpa = { id = "org.jetbrains.kotlin.plugin.jpa", version.ref = "kotlin" }
58-
kover = { id = "org.jetbrains.kotlinx.kover", version = "0.7.1" }
58+
kover = { id = "org.jetbrains.kotlinx.kover", version = "0.7.6" }
5959
ktlint = { id = "org.jmailen.kotlinter", version = "3.16.0" }
6060
nexus-publish = { id = "io.github.gradle-nexus.publish-plugin", version = "1.3.0" }

0 commit comments

Comments
 (0)
Please sign in to comment.