(self, base_url, org_sid, team_name, options)
| 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: |
| 235 | logger.error("repo_id 不能为空!") |
| 236 | return |
| 237 | repo_id = options['repo_id'] |
| 238 | if options['project_id'] is None: |
| 239 | logger.error("project_id 不能为空!") |
| 240 | return |
| 241 | project_id = options['project_id'] |
| 242 | |
| 243 | self.get_ccissues(base_url, org_sid, team_name, repo_id, project_id) |
| 244 | |
| 245 | def get_dupfiles_preproccess(self, base_url, org_sid, team_name, options): |
| 246 | if options['repo_id'] is None: |
no test coverage detected