fix coverage: swap save and combine

This commit is contained in:
cclecle
2023-11-06 11:13:16 +00:00
parent 0594c29334
commit 8868f77ef3

View File

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