running the aggregate version of jacoco with

maven, hoping to get all the subprojects in one
file instead of having to grab an xml for each
single subproject
This commit is contained in:
Karma Riuk
2025-03-17 15:49:16 +01:00
parent 6ac3ffb8a1
commit 211f9dde99

View File

@ -177,7 +177,7 @@ class MavenHandler(BuildHandler):
return f"{self.base_cmd} clean"
def generate_coverage_report_cmd(self):
return f"{self.base_cmd} jacoco:report"
return f"{self.base_cmd} jacoco:report-aggregate"
def container_name(self) -> str:
return "crab-maven"