https://github.com/ElsevierSoftwareX/SOFTX_2019_219
Raw File
Tip revision: 99932db9e71d31a76425d68eef7d5859523ca0e4 authored by Konrad Werys on 04 November 2019, 09:33:32 UTC
doc: changes in the documentation
Tip revision: 99932db
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*' '*/ITKFactoryRegistration/*' '*/ITKIOFactoryRegistration/*' '*/usr/include/*' -o coverage.info > lcov_remove.txt
genhtml coverage.info --output-directory out
open out/index.html
back to top