Executes the check. Appends to ctx.report on failure. May raise SkipToMerge to short-circuit remaining checks.
(self, ctx: AuditContext)
| 180 | raise NotImplementedError |
| 181 | |
| 182 | def run(self, ctx: AuditContext) -> None: |
| 183 | """ |
| 184 | Executes the check. Appends to ctx.report on failure. |
| 185 | May raise SkipToMerge to short-circuit remaining checks. |
| 186 | """ |
| 187 | raise NotImplementedError |
| 188 | |
| 189 | class AuditReport: |
| 190 | def __init__(self): |
no outgoing calls
no test coverage detected