/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/tests/test_remote.py

  • Committer: Jelmer Vernooij
  • Date: 2020-05-24 00:39:50 UTC
  • mto: This revision was merged to the branch mainline in revision 7504.
  • Revision ID: jelmer@jelmer.uk-20200524003950-bbc545r76vc5yajg
Add github action.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
import tarfile
30
30
import zlib
31
31
 
32
 
from ... import (
 
32
from .. import (
33
33
    bencode,
34
34
    branch,
35
35
    config,
40
40
    transport,
41
41
    treebuilder,
42
42
    )
43
 
from ...branch import Branch
44
 
from .. import (
 
43
from ..branch import Branch
 
44
from ..bzr import (
45
45
    bzrdir,
46
46
    inventory,
47
47
    inventory_delta,
49
49
    versionedfile,
50
50
    vf_search,
51
51
    )
52
 
from ..bzrdir import (
 
52
from ..bzr.bzrdir import (
53
53
    BzrDir,
54
54
    BzrDirFormat,
55
55
    )
56
 
from .. import (
 
56
from ..bzr import (
57
57
    RemoteBzrProber,
58
58
    )
59
 
from ..chk_serializer import chk_bencode_serializer
60
 
from ..remote import (
 
59
from ..bzr.chk_serializer import chk_bencode_serializer
 
60
from ..bzr.remote import (
61
61
    RemoteBranch,
62
62
    RemoteBranchFormat,
63
63
    RemoteBzrDir,
65
65
    RemoteRepository,
66
66
    RemoteRepositoryFormat,
67
67
    )
68
 
from .. import groupcompress_repo, knitpack_repo
69
 
from ...revision import (
 
68
from ..bzr import groupcompress_repo, knitpack_repo
 
69
from ..revision import (
70
70
    NULL_REVISION,
71
71
    Revision,
72
72
    )
73
 
from ..smart import medium, request
74
 
from ..smart.client import _SmartClient
75
 
from ..smart.repository import (
 
73
from ..bzr.smart import medium, request
 
74
from ..bzr.smart.client import _SmartClient
 
75
from ..bzr.smart.repository import (
76
76
    SmartServerRepositoryGetParentMap,
77
77
    SmartServerRepositoryGetStream_1_19,
78
78
    _stream_to_byte_stream,
79
79
    )
80
 
from ...tests import (
 
80
from . import (
81
81
    test_server,
82
82
    )
83
 
from ...tests.scenarios import load_tests_apply_scenarios
84
 
from ...transport.memory import MemoryTransport
85
 
from ...transport.remote import (
 
83
from .scenarios import load_tests_apply_scenarios
 
84
from ..transport.memory import MemoryTransport
 
85
from ..transport.remote import (
86
86
    RemoteTransport,
87
87
    RemoteSSHTransport,
88
88
    RemoteTCPTransport,