Add support for revision_log returning Revision objects
1 unresolved thread
1 unresolved thread
This is going to happen in the near future
Merge request reports
Activity
Jenkins job DLDHG/gitlab-builds #74 failed .
See Console Output and Coverage Report for more details.300 300 # extract original changesets info and the transplant sources 301 301 hg_changesets = set() 302 302 transplant_sources = set() 303 for rev in loader.storage.revision_log(revisions): 303 for rev_d in loader.storage.revision_log(revisions): 304 if isinstance(rev_d, Revision): 305 # TODO: Remove this conditional after swh-storage fully migrated to 306 # returning revision objects instead of dicts. 307 rev = rev_d 308 else: 309 rev = Revision.from_dict(rev_d) enabled an automatic merge when the pipeline for 60da9f17 succeeds
Jenkins job DLDHG/gitlab-builds #79 failed .
See Console Output and Coverage Report for more details.added 3 commits
-
60da9f17...647dc230 - 2 commits from branch
master
- 9bd1127b - Merge branch 'master' into revision_log
-
60da9f17...647dc230 - 2 commits from branch
Jenkins job DLDHG/gitlab-builds #84 failed .
See Console Output and Coverage Report for more details.
Please register or sign in to reply