Skip to content Skip to sidebar Skip to footer

Sonarqube Test Coverage With Istanbul : No Coverage Property. Skip Sensor

I'm trying to output some test coverage (lcov) reports from istanbul into sonarqube to analyse our test coverage using thoughtworks GO. There is a coverage/html folder being output

Solution 1:

Thanks for responding. I've managed to fix this by replacing the last line with this : sonar.javascript.lcov.reportPath=coverage/html/lcov.info. It appears that sonarqube needs a path to a file (lcov.info) and not just the folder. Also my istanbul configuration was wrong because it needed to output lcov and not just a standard report.


Post a Comment for "Sonarqube Test Coverage With Istanbul : No Coverage Property. Skip Sensor"