From 9ccb811d0cd43d255164741adc1f5ef9daecd0b9 Mon Sep 17 00:00:00 2001 From: Michael Platings Date: Thu, 29 Feb 2024 16:49:59 +0000 Subject: [PATCH] Disable decision coverage The decision coverage output is polluted with many "Decision couldn't be analyzed" errors. When it does work, it doesn't appear to add anything useful beyond what branch coverage already provides. --- scripts/generate_coverage_report.py | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/generate_coverage_report.py b/scripts/generate_coverage_report.py index 8ce5cf9a2..18b05cbf9 100755 --- a/scripts/generate_coverage_report.py +++ b/scripts/generate_coverage_report.py @@ -59,7 +59,6 @@ the toolchain with which the binaries were built.""" "--html-title=IntrinsicCV Coverage Report", "--html-syntax-highlighting", "--html-tab-size=2", - "--decisions", "--exclude-noncode-lines", f"--exclude={build_dir}", "--exclude=test", -- GitLab