MCPcopy
hub / github.com/github/awesome-copilot / _parse_covers

Function _parse_covers

skills/quality-playbook/quality_gate.py:127–135  ·  view source on GitHub ↗
(bug_block)

Source from the content-addressed store, hash-verified

125
126
127def _parse_covers(bug_block):
128 m = _COVERS_RE.search(bug_block)
129 if not m:
130 return []
131 raw = m.group(1).strip()
132 if not raw:
133 return []
134 items = [s.strip() for s in raw.split(",")]
135 return [s for s in items if s]
136
137
138def _parse_consolidation_rationale(bug_block):

Callers 1

Calls 1

searchMethod · 0.80

Tested by

no test coverage detected