update coverage: add cov.combine()

This commit is contained in:
cclecle
2023-11-06 10:01:01 +00:00
parent 6fcc465d58
commit 0fa9f8d779

View File

@@ -63,6 +63,7 @@ class cl_unit_test(cl_helper_withresults_base):
if cls.enable_coverage_check is True:
cov.stop()
cov.save()
cov.combine()
cov.html_report(directory=str(CoverageReportPath))
cov.xml_report(outfile=str(CoverageReportPath / f"{cls.CoverageReportName}.xml"))