/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/plugins/git/repository.py

  • Committer: Jelmer Vernooij
  • Date: 2018-06-21 17:34:49 UTC
  • mfrom: (6989.2.8 inter-git-tests)
  • Revision ID: jelmer@jelmer.uk-20180621173449-lytzb1fg5gplhqwz
Merge lp:~jelmer/brz/inter-git-tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
688
688
 
689
689
    def network_name(self):
690
690
        return "git"
 
691
 
 
692
 
 
693
def get_extra_interrepo_test_combinations():
 
694
    from ...bzr.groupcompress_repo import RepositoryFormat2a
 
695
    from . import interrepo
 
696
    return [
 
697
            (interrepo.InterLocalGitNonGitRepository, GitRepositoryFormat(), RepositoryFormat2a()),
 
698
            (interrepo.InterLocalGitLocalGitRepository, GitRepositoryFormat(), GitRepositoryFormat()),
 
699
            (interrepo.InterToLocalGitRepository, RepositoryFormat2a(), GitRepositoryFormat()),
 
700
        ]