()
| 79 | return token |
| 80 | |
| 81 | def make_auth_header(): |
| 82 | return {'Authorization': 'token ' + get_auth_token()} |
| 83 | |
| 84 | def post_issue_comment(project, num, body): |
| 85 | url = 'https://api.github.com/repos/{project}/issues/{num}/comments'.format(project=project, num=num) |
no test coverage detected