Skip to content

Commit 78af1c0

Browse files
committed
additional genhtml flags
1 parent 78e03f8 commit 78af1c0

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

scripts/quality_runners.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,9 @@ def cpp_coverage(module: Module, artifact_dir: Path) -> ProcessResult:
102102
"--legend",
103103
"--function-coverage",
104104
"--branch-coverage",
105+
"--ignore-errors=negative,negative,source,source",
106+
"--synthesize-missing",
105107
]
106-
if module.name == "score_communication":
107-
# Communication has negative values in generated .dat file
108-
extra_args = ["--ignore-errors=negative,negative,source,source", "--synthesize-missing"]
109-
genhtml_call.extend(extra_args)
110108
genhtml_result = run_command(genhtml_call, cwd=bazel_source_directory)
111109

112110
return genhtml_result

0 commit comments

Comments
 (0)