~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/__init__.py

[merge] Robert's test-api

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
                      bzrlib.store
65
65
                      ]
66
66
def packages_to_test():
 
67
    """Return a list of packages to test.
 
68
 
 
69
    The packages are not globally imported so that import failures are
 
70
    triggered when running selftest, not when importing the command.
 
71
    """
 
72
    import bzrlib.doc
67
73
    import bzrlib.tests.blackbox
68
74
    return [
 
75
            bzrlib.doc,
69
76
            bzrlib.tests.blackbox
70
77
            ]
71
78