You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
469 B
14 lines
469 B
4 months ago
|
rm -recurse -force coverage/*
|
||
|
cp *.cpp,*.hpp,*.rl builddir
|
||
|
|
||
|
. .venv/Scripts/activate
|
||
|
|
||
|
rm -recurse -force coverage
|
||
|
cp scripts\gcovr_patched_coverage.py .venv\Lib\site-packages\gcovr\coverage.py
|
||
|
|
||
|
gcovr -o coverage/ --html --html-details --html-theme github.dark-blue --gcov-ignore-errors all --gcov-ignore-parse-errors negative_hits.warn_once_per_file -e builddir/subprojects -e builddir -e subprojects -j 10 .
|
||
|
|
||
|
rm *.gcov.json.gz
|
||
|
|
||
|
start .\coverage\coverage_details.html
|