First commit of the starter kit.
This commit is contained in:
parent
20dc00e62f
commit
612ad717c0
42 changed files with 1853 additions and 0 deletions
13
scripts/coverage_report.ps1
Normal file
13
scripts/coverage_report.ps1
Normal file
|
@ -0,0 +1,13 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue