https://github.com/ElsevierSoftwareX/SOFTX_2019_219
Raw File
Tip revision: 067df5d8b6b785ff51677fd206eade2d85896c85 authored by Konrad Werys on 29 October 2019, 14:20:35 UTC
feat: start point 2 params added
Tip revision: 067df5d
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