I have a Node.js module composed of both a C++ addon and Javascript library code. It includes command line generated code coverage analysis using lcov
for the C++ and istanbul
for the Javascript. The output from both is in lcov format which can be nicely combined in the completed coverage report. See make cover
in the Makefile
for details.
My question is how do I post the output of this combined code coverage for display in Coveralls? I have tried using node-coveralls but this only handles the javascript in the module and as far as I can see cpp-coveralls only handles the C++. Is there perhaps a way to combine the output of the two and post the result to Coveralls?
Thanks in advance for any insight.