~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2008-11-05 00:11:09 UTC
  • mto: This revision was merged to the branch mainline in revision 678.
  • Revision ID: aaron@aaronbentley.com-20081105001109-yt2dp0h5h3ssb7xt
Restore runtime ignore for .shelf

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2008 Aaron Bentley.
 
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
"""\
 
18
Various useful commands for working with bzr.
 
19
"""
 
20
 
 
21
from bzrlib import ignores
 
22
from bzrlib.commands import plugin_cmds
 
23
from version import version_info, __version__
 
24
 
 
25
 
 
26
ignores.add_runtime_ignores(['./.shelf'])
 
27
 
 
28
 
 
29
commands = {
 
30
    'cmd_branches': [],
 
31
    'cmd_branch_history': [],
 
32
    'cmd_cbranch': [],
 
33
    'cmd_cdiff': [],
 
34
    'cmd_clean_tree': [],
 
35
    'cmd_fetch_ghosts': ['fetch-missing'],
 
36
    'cmd_graph_ancestry': [],
 
37
    'cmd_heads': [],
 
38
    'cmd_import': [],
 
39
    'cmd_link_tree': [],
 
40
    'cmd_multi_pull': [],
 
41
    'cmd_patch': [],
 
42
    'cmd_rspush': [],
 
43
    'cmd_shelf': [],
 
44
    'cmd_shell': [],
 
45
    'cmd_shelve1': ['shelve'],
 
46
    'cmd_trees': [],
 
47
    'cmd_unshelve1': ['unshelve'],
 
48
    'cmd_zap': [],
 
49
}
 
50
 
 
51
 
 
52
for cmd_name, aliases in commands.items():
 
53
    plugin_cmds.register_lazy(cmd_name, aliases,
 
54
                              'bzrlib.plugins.bzrtools.command_classes')
 
55
 
 
56
 
 
57
def test_suite():
 
58
    from bzrlib.tests.TestUtil import TestLoader
 
59
    import tests
 
60
    from doctest import DocTestSuite, ELLIPSIS
 
61
    from unittest import TestSuite
 
62
    import bzrtools
 
63
    import tests.clean_tree
 
64
    import tests.test_dotgraph
 
65
    import tests.is_clean
 
66
    import tests.test_cbranch
 
67
    import tests.test_link_tree
 
68
    import tests.test_patch
 
69
    import tests.test_rspush
 
70
    import tests.upstream_import
 
71
    import zap
 
72
    import tests.blackbox
 
73
    import tests.shelf_tests
 
74
    result = TestSuite()
 
75
    result.addTest(DocTestSuite(bzrtools, optionflags=ELLIPSIS))
 
76
    result.addTest(tests.clean_tree.test_suite())
 
77
    result.addTest(tests.test_suite())
 
78
    result.addTest(TestLoader().loadTestsFromModule(tests.shelf_tests))
 
79
    result.addTest(tests.blackbox.test_suite())
 
80
    result.addTest(tests.upstream_import.test_suite())
 
81
    result.addTest(zap.test_suite())
 
82
    result.addTest(TestLoader().loadTestsFromModule(tests.test_dotgraph))
 
83
    result.addTest(TestLoader().loadTestsFromModule(tests.is_clean))
 
84
    result.addTest(TestLoader().loadTestsFromModule(tests.test_link_tree))
 
85
    result.addTest(TestLoader().loadTestsFromModule(tests.test_patch))
 
86
    result.addTest(TestLoader().loadTestsFromModule(tests.test_rspush))
 
87
    result.addTest(TestLoader().loadTestsFromModule(tests.test_cbranch))
 
88
    return result