mirror of https://github.com/usbharu/Hideout.git
chore: koverの修正
This commit is contained in:
parent
b9da734298
commit
610ecd121a
|
@ -244,7 +244,7 @@ jobs:
|
||||||
uses: madrapps/jacoco-report@v1.6.1
|
uses: madrapps/jacoco-report@v1.6.1
|
||||||
with:
|
with:
|
||||||
paths: |
|
paths: |
|
||||||
${{ github.workspace }}/build/reports/kover/report.xml
|
${{ github.workspace }}/hideout-core/build/reports/kover/report.xml
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
title: Code Coverage
|
title: Code Coverage
|
||||||
update-comment: true
|
update-comment: true
|
||||||
|
|
|
@ -304,12 +304,16 @@ project.gradle.taskGraph.whenReady {
|
||||||
}
|
}
|
||||||
|
|
||||||
kover {
|
kover {
|
||||||
excludeSourceSets {
|
currentProject {
|
||||||
names("aot", "e2eTest", "intTest")
|
sources {
|
||||||
}
|
excludedSourceSets.addAll(
|
||||||
}
|
"aot", "e2eTest", "intTest"
|
||||||
|
)
|
||||||
|
|
||||||
koverReport {
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
reports {
|
||||||
filters {
|
filters {
|
||||||
excludes {
|
excludes {
|
||||||
packages(
|
packages(
|
||||||
|
@ -329,6 +333,7 @@ koverReport {
|
||||||
packages("org.jetbrains")
|
packages("org.jetbrains")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
springBoot {
|
springBoot {
|
||||||
|
|
Loading…
Reference in New Issue