psycofdj / coverxygen

Generate doxygen's documentation coverage report
GNU General Public License v3.0
49 stars 11 forks source link

Integration with codecov.io #4

Closed junghans closed 6 years ago

junghans commented 7 years ago

See codecov/support#364, in short coverxygen can be used to get doxygen coverage numbers on codecov.io by simply adding something like:

make doxygen
python -m coverxygen --xml-dir xml/ --src-dir . --output doxygen.coverage.info
bash <(curl -s https://codecov.io/bash) -R . -F doxygen -X gcov -f doxygen.coverage.info
psycofdj commented 7 years ago

Thanks for the tip ! I'm glad you managed to make it work with codecov.io.

@junghans I see you're working with C/C++ code. You might by interested by psycofdj/xtdmake (link to doc) to generate code quality reports from cmake's targets.