(self, base_url, org_sid, team_name, options)
| 215 | self.get_issues(base_url, org_sid, team_name, repo_id, project_id) |
| 216 | |
| 217 | def get_issue_detail_preproccess(self, base_url, org_sid, team_name, options): |
| 218 | if options['repo_id'] is None: |
| 219 | logger.error("repo_id 不能为空!") |
| 220 | return |
| 221 | repo_id = options['repo_id'] |
| 222 | if options['project_id'] is None: |
| 223 | logger.error("project_id 不能为空!") |
| 224 | return |
| 225 | project_id = options['project_id'] |
| 226 | if options['issue_id'] is None: |
| 227 | logger.error("issue_id 不能为空!") |
| 228 | return |
| 229 | issue_id = options['issue_id'] |
| 230 | |
| 231 | self.get_issue_detail(base_url, org_sid, team_name, repo_id, project_id, issue_id) |
| 232 | |
| 233 | def get_ccissues_preproccess(self, base_url, org_sid, team_name, options): |
| 234 | if options['repo_id'] is None: |
no test coverage detected