We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6602391 commit 604837cCopy full SHA for 604837c
strictdoc/backend/sdoc_source_code/coverage_reports/gcov.py
@@ -154,6 +154,19 @@ def read_from_string(
154
multiline__=None,
155
),
156
)
157
+ # FIXME: Remove?
158
+ testcase_node.set_field_value(
159
+ field_name="STATUS",
160
+ form_field_index=0,
161
+ value=SDocNodeField(
162
+ parent=testcase_node,
163
164
+ parts=[
165
+ "Covered" if is_function_covered else "Non-covered"
166
+ ],
167
+ multiline__=None,
168
+ ),
169
+ )
170
171
path = "src/main.c"
172
gcov_path_hash = hashlib.md5(path.encode("utf-8")).hexdigest()
0 commit comments