(self, base_url, org_sid, team_name, options)
| 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: |
| 247 | logger.error("repo_id 不能为空!") |
| 248 | return |
| 249 | repo_id = options['repo_id'] |
| 250 | if options['project_id'] is None: |
| 251 | logger.error("project_id 不能为空!") |
| 252 | return |
| 253 | project_id = options['project_id'] |
| 254 | |
| 255 | self.get_dupfiles(base_url, org_sid, team_name, repo_id, project_id) |
| 256 | |
| 257 | def create_repository(self, base_url, org_sid, team_name, payload): |
| 258 | logger.info("创建代码库") |
no test coverage detected