https://github.com/ElsevierSoftwareX/SOFTX_2019_219
Raw File
Tip revision: 23801a03e63804d9d099c644e2c2fe4945d6d06b authored by Konrad Werys on 30 July 2019, 11:59:42 UTC
fix: codecov reports
Tip revision: 23801a0
generateTestCoverageReport.sh
#!/bin/bash

lcov --capture --directory . --output-file coverage_full.info > lcov_capture.txt
lcov --remove coverage_full.info '*/thirdParty/*' '*/tests/*' '*/include/ITK*' '*v1*' '*/ITKIOFactoryRegistration/*' '*/usr/include/*' -o coverage.info > lcov_remove.txt
genhtml coverage.info --output-directory out
open out/index.html
back to top