/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/propose/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2020-06-15 01:29:36 UTC
  • mfrom: (7490.40.4 work)
  • mto: (7490.40.19 work)
  • mto: This revision was merged to the branch mainline in revision 7516.
  • Revision ID: jelmer@jelmer.uk-20200615012936-1adqbu592y7lzmy8
Merge upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
plugin_cmds.register_lazy("cmd_land_merge_proposal", ["land"], __name__ + ".cmds")
26
26
plugin_cmds.register_lazy("cmd_publish_derived", ['publish'], __name__ + ".cmds")
27
27
plugin_cmds.register_lazy("cmd_find_merge_proposal", ['find-proposal'], __name__ + ".cmds")
28
 
plugin_cmds.register_lazy("cmd_github_login", ["gh-login"], __name__ + ".cmds")
29
 
plugin_cmds.register_lazy("cmd_gitlab_login", ["gl-login"], __name__ + ".cmds")
30
28
plugin_cmds.register_lazy(
31
29
    "cmd_my_merge_proposals", ["my-proposals"],
32
30
    __name__ + ".cmds")
33
31
 
34
32
 
35
 
from ...propose import hosters
36
 
hosters.register_lazy(
37
 
    "launchpad", "breezy.plugins.propose.launchpad",
38
 
    "Launchpad")
39
 
hosters.register_lazy(
40
 
    "github", "breezy.plugins.propose.github",
41
 
    "GitHub")
42
 
hosters.register_lazy(
43
 
    "gitlab", "breezy.plugins.propose.gitlabs",
44
 
    "GitLab")
 
33
def test_suite():
 
34
    from unittest import TestSuite
 
35
    from .tests import test_suite
 
36
    result = TestSuite()
 
37
    result.addTest(test_suite())
 
38
    return result