Add script to combine coverage files (#10674)

* Add script to combine coverage files

* add script

* Add core coverage file as well

* Add json reporting

* Update README

* more
This commit is contained in:
Charles Gagnon
2020-06-02 12:53:58 -07:00
committed by GitHub
parent c057dddb25
commit 2879da5ca5
16 changed files with 71 additions and 18 deletions

View File

@@ -56,6 +56,7 @@ exports.createReport = function (isSingle) {
let reports = [];
if (isSingle) {
reports.push(iReports.create('lcovonly'));
reports.push(iReports.create('json')); // {{SQL CARBON EDIT}} add json for code coverage merging
} else {
reports.push(iReports.create('json'));
reports.push(iReports.create('lcov'));