(self, base_url, org_sid, team_name, options)
| 203 | self.get_overview(base_url, org_sid, team_name, repo_id, project_id) |
| 204 | |
| 205 | def get_issues_preproccess(self, base_url, org_sid, team_name, options): |
| 206 | if options['repo_id'] is None: |
| 207 | logger.error("repo_id 不能为空!") |
| 208 | return |
| 209 | repo_id = options['repo_id'] |
| 210 | if options['project_id'] is None: |
| 211 | logger.error("project_id 不能为空!") |
| 212 | return |
| 213 | project_id = options['project_id'] |
| 214 | |
| 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: |
no test coverage detected