Skip to content

Commit 6156f33

Browse files
committed
ci: enable codecov report in xml format
1 parent 0493721 commit 6156f33

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

buckets/build.gradle

+5-1
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,14 @@ test {
1818
jacocoTestReport {
1919
dependsOn test
2020
reports {
21-
xml.required = false
21+
xml.required = true
2222
csv.required = false
2323
html.outputLocation = layout.buildDirectory.dir('jacocoHtml')
2424
}
25+
subprojects.each {
26+
sourceSets it.sourceSets.main
27+
}
28+
executionData fileTree(project.rootDir.absolutePath).include("**/build/jacoco/*.exec")
2529
}
2630

2731
optimizedJar {

insurance/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ test {
1818
jacocoTestReport {
1919
dependsOn test
2020
reports {
21-
xml.required = false
21+
xml.required = true
2222
csv.required = false
2323
html.outputLocation = layout.buildDirectory.dir('jacocoHtml')
2424
}

network-owned-liquidity/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ test {
2121
jacocoTestReport {
2222
dependsOn test
2323
reports {
24-
xml.required = false
24+
xml.required = true
2525
csv.required = false
2626
html.outputLocation = layout.buildDirectory.dir('jacocoHtml')
2727
}

savings-rate/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ test {
2121
jacocoTestReport {
2222
dependsOn test
2323
reports {
24-
xml.required = false
24+
xml.required = true
2525
csv.required = false
2626
html.outputLocation = layout.buildDirectory.dir('jacocoHtml')
2727
}

0 commit comments

Comments
 (0)