~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/__init__.py

Merge from integration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
                      bzrlib.store
74
74
                      ]
75
75
def packages_to_test():
 
76
    """Return a list of packages to test.
 
77
 
 
78
    The packages are not globally imported so that import failures are
 
79
    triggered when running selftest, not when importing the command.
 
80
    """
 
81
    import bzrlib.doc
76
82
    import bzrlib.tests.blackbox
77
83
    import bzrlib.tests.branch_implementations
78
84
    return [
 
85
            bzrlib.doc,
79
86
            bzrlib.tests.blackbox,
80
87
            bzrlib.tests.branch_implementations,
81
88
            ]