1
# Copyright (C) 2008 Aaron Bentley.
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.
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.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
Various useful commands for working with bzr.
21
from bzrlib import ignores, option
22
from bzrlib.commands import plugin_cmds
23
from version import version_info, __version__
26
ignores.add_runtime_ignores(['./.shelf'])
31
'cmd_branch_history': [],
34
'cmd_conflict_diff': [],
35
'cmd_create_mirror': [],
36
'cmd_fetch_ghosts': ['fetch-missing'],
37
'cmd_graph_ancestry': [],
52
for cmd_name, aliases in commands.items():
53
plugin_cmds.register_lazy(cmd_name, aliases,
54
'bzrlib.plugins.bzrtools.command_classes')
57
plugin_cmds.register_lazy('cmd_heads', [], 'bzrlib.plugins.bzrtools.heads')
60
option.diff_writer_registry.register_lazy(
61
'auto-color', 'bzrlib.plugins.bzrtools.colordiff', 'auto_diff_writer',
62
'Colorized diffs, if supported',
64
option.diff_writer_registry.register_lazy(
65
'color', 'bzrlib.plugins.bzrtools.colordiff', 'DiffWriter',
68
option.diff_writer_registry.default_key = 'auto-color'
72
from bzrlib.tests.TestUtil import TestLoader
74
from doctest import DocTestSuite, ELLIPSIS
75
from unittest import TestSuite
77
import tests.test_dotgraph
79
import tests.test_cbranch
80
import tests.test_conflict_diff
81
from bzrlib.plugins.bzrtools.tests import test_fetch_ghosts
82
import tests.test_graph
83
import tests.test_link_tree
84
import tests.test_patch
85
import tests.test_rspush
86
import tests.test_mirror
87
import tests.upstream_import
90
import tests.shelf_tests
92
result.addTest(DocTestSuite(bzrtools, optionflags=ELLIPSIS))
93
result.addTest(tests.test_suite())
94
result.addTest(TestLoader().loadTestsFromModule(tests.shelf_tests))
95
result.addTest(tests.blackbox.test_suite())
96
result.addTest(TestLoader().loadTestsFromModule(tests.upstream_import))
97
result.addTest(zap.test_suite())
98
result.addTest(TestLoader().loadTestsFromModule(tests.test_dotgraph))
99
result.addTest(TestLoader().loadTestsFromModule(tests.is_clean))
100
result.addTest(TestLoader().loadTestsFromModule(test_fetch_ghosts))
101
result.addTest(TestLoader().loadTestsFromModule(tests.test_graph))
102
result.addTest(TestLoader().loadTestsFromModule(tests.test_link_tree))
103
result.addTest(TestLoader().loadTestsFromModule(tests.test_patch))
104
result.addTest(TestLoader().loadTestsFromModule(tests.test_rspush))
105
result.addTest(TestLoader().loadTestsFromModule(tests.test_cbranch))
106
result.addTest(TestLoader().loadTestsFromModule(tests.test_conflict_diff))
107
result.addTest(TestLoader().loadTestsFromModule(tests.test_mirror))