coverage: Change --html-details to --html-nested (gcovr)

--html-nested option is used to create a separate web page for each file and directory. Each of these web pages includes the contents of file with annotations that summarize code coverage.

Signed-off-by: Ewelina Walkusz <ewelinax.walkusz@intel.com>
pull/13075/merge
Walkusz 8 months ago committed by Jussi Pakkanen
parent 5597b6711d
commit 783183260d
  1. 2
      mesonbuild/scripts/coverage.py

@ -161,7 +161,7 @@ def coverage(outputs: T.List[str], source_root: str, subproject_root: str, build
os.mkdir(htmloutdir)
subprocess.check_call(gcovr_base_cmd + gcovr_config +
['--html',
'--html-details',
'--html-nested',
'--print-summary',
'-o', os.path.join(htmloutdir, 'index.html'),
] + gcov_exe_args)

Loading…
Cancel
Save