I have a project for which I have written functional test in another github repo. I need to get the code coverage report using jacoco. Its like the main project is in github repo A
and test code is in github repo B
. I am able to get jacocoIT.exec but when I process it with sonar it gives me no code coverage and also doesn't show any LOC details.
I am guessing since I am triggering test from repo B
it is not able to get the details about classes for repo A
.
Is there any way I can get code coverage for this kind of project ?