aboutsummaryrefslogtreecommitdiffstats
path: root/gradle
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <marussy@mit.bme.hu>2021-09-24 18:35:42 +0200
committerLibravatar Kristóf Marussy <marussy@mit.bme.hu>2021-09-24 18:35:42 +0200
commit17869e178f2644cf6c0375a52691e375535a8c71 (patch)
tree6e884935b731b1a2358861b266a10e9c08888333 /gradle
parentci: fix typo and simplify workflow (diff)
downloadrefinery-17869e178f2644cf6c0375a52691e375535a8c71.tar.gz
refinery-17869e178f2644cf6c0375a52691e375535a8c71.tar.zst
refinery-17869e178f2644cf6c0375a52691e375535a8c71.zip
build: make sure to produce JaCoCo xml report
Diffstat (limited to 'gradle')
-rw-r--r--gradle/junit.gradle10
1 files changed, 8 insertions, 2 deletions
diff --git a/gradle/junit.gradle b/gradle/junit.gradle
index 3f3970d9..f603a4e4 100644
--- a/gradle/junit.gradle
+++ b/gradle/junit.gradle
@@ -17,5 +17,11 @@ task slowTest(type: Test) {
17 useJUnitPlatform() 17 useJUnitPlatform()
18} 18}
19 19
20test.finalizedBy(jacocoTestReport) 20jacocoTestReport {
21jacocoTestReport.dependsOn(test) 21 dependsOn test
22 reports {
23 xml.enabled true
24 }
25}
26
27test.finalizedBy(jacocoTestReport) \ No newline at end of file