How can I post code coverage from a C ++ / Javascript Node.js integrated addon to Coveralls.io?

I have a Node.js module consisting of a C ++ addon and Javascript library code. It includes code coverage analysis using the command line, using lcovfor C ++ and istanbulfor Javascript. The output from both is presented in lcov format, which can be well combined in a completed coverage report. See make coverc Makefile. For details .

My question is how to post the output of this combined code coverage for display in Coveralls ? I tried using node-coveralls , but this only handles javascript in the module, and as far as I can see cpp-coveralls only handles C ++. Maybe there is a way to combine the output of the two and send the result to Coveralls?

Thanks in advance for your understanding.

+4
source share

Source: https://habr.com/ru/post/1525192/


All Articles