(commit, branches)
| 324 | sys.exit(result.returncode) |
| 325 | |
| 326 | def check_commit_branches(commit, branches): |
| 327 | result = get_commit_branches(commit) |
| 328 | for branch in branches: |
| 329 | if not branch in result: |
| 330 | return False |
| 331 | return True |
| 332 | |
| 333 | def issue_to_markdown(issue, hide_details = True, title_only = False): |
| 334 | closed_issues = [] |
nothing calls this directly
no test coverage detected