(self, base_url, org_sid, team_name, options)
| 191 | self.get_scan_cons(base_url, org_sid, team_name, repo_id, project_id, job_id) |
| 192 | |
| 193 | def get_overview_preproccess(self, base_url, org_sid, team_name, options): |
| 194 | if options['repo_id'] is None: |
| 195 | logger.error("repo_id 不能为空!") |
| 196 | return |
| 197 | repo_id = options['repo_id'] |
| 198 | if options['project_id'] is None: |
| 199 | logger.error("project_id 不能为空!") |
| 200 | return |
| 201 | project_id = options['project_id'] |
| 202 | |
| 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: |
no test coverage detected