/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
0.431.1 by Jelmer Vernooij
Start work on propose command.
1
# Copyright (C) 2018 Jelmer Vernooij <jelmer@jelmer.uk>
2
#
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
7
#
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
# GNU General Public License for more details.
12
#
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
0.432.2 by Jelmer Vernooij
Publish command sort of works.
17
"""Management of hosted branches."""
0.431.1 by Jelmer Vernooij
Start work on propose command.
18
7290.33.2 by Jelmer Vernooij
Add version_info to some plugins.
19
from ... import version_info  # noqa: F401
0.431.1 by Jelmer Vernooij
Start work on propose command.
20
from ...commands import plugin_cmds
21
22
plugin_cmds.register_lazy("cmd_propose_merge", ["propose"], __name__ + ".cmds")
7296.9.1 by Jelmer Vernooij
Add 'brz land' subcommand.
23
plugin_cmds.register_lazy("cmd_land_merge_proposal", ["land"], __name__ + ".cmds")
0.431.18 by Jelmer Vernooij
Rename 'brz publish' to 'brz publish-derived'.
24
plugin_cmds.register_lazy("cmd_publish_derived", ['publish'], __name__ + ".cmds")
0.431.37 by Jelmer Vernooij
add a find-merge-proposal command.
25
plugin_cmds.register_lazy("cmd_find_merge_proposal", ['find-proposal'], __name__ + ".cmds")
0.431.63 by Jelmer Vernooij
Add 'brz my-proposals' command.
26
plugin_cmds.register_lazy(
27
    "cmd_my_merge_proposals", ["my-proposals"],
28
    __name__ + ".cmds")
7490.105.1 by Jelmer Vernooij
Add some hoster metadata fields.
29
plugin_cmds.register_lazy("cmd_hosters", [], __name__ + ".cmds")
7408.3.1 by Jelmer Vernooij
Move propose module into core.
30
31
7490.23.1 by Jelmer Vernooij
Add support for newer style gitlab merge proposal URLs.
32
def test_suite():
33
    from unittest import TestSuite
34
    from .tests import test_suite
35
    result = TestSuite()
36
    result.addTest(test_suite())
37
    return result