获取增量资源信息 :return:
(self)
| 41 | return False |
| 42 | |
| 43 | def get_src_info(self): |
| 44 | ''' |
| 45 | 获取增量资源信息 |
| 46 | :return: |
| 47 | ''' |
| 48 | if self.local_cache.exist_cache: |
| 49 | return self.local_cache.path_dict |
| 50 | if self.remote_cache.exist_cache: |
| 51 | return self.remote_cache.path_dict |
| 52 | raise SourceMgrError('the IncSourceMgr error %s : %s' % (self.scm_url, self.type)) |
| 53 | |
| 54 | def insert_src_info(self, path_dict): |
| 55 | ''' |
no test coverage detected