~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to tests/__init__.py

  • Committer: Michael Ellerman
  • Date: 2006-02-11 03:27:01 UTC
  • mto: (0.1.73 shelf-tmp)
  • mto: This revision was merged to the branch mainline in revision 334.
  • Revision ID: michael@ellerman.id.au-20060211032701-43996d6a9e744b1a
Make patch parsing cope with shelf messages, starting with '#'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
def test_suite():
2
 
    try:
3
 
        from bzrtools.tests.errors import NoPyBaz
4
 
        import bzrtools.tests.test_baz_import
5
 
        return bzrtools.tests.test_baz_import.test_suite()
6
 
    except ImportError:
7
 
        try:
8
 
            from bzrlib.plugins.bzrtools.errors import NoPyBaz
9
 
            import bzrlib.plugins.bzrtools.tests.test_baz_import
10
 
            return bzrlib.plugins.bzrtools.tests.test_baz_import.test_suite()
11
 
        except ImportError:
12
 
            from unittest import TestSuite
13
 
            return TestSuite()
14
 
        except NoPyBaz:
15
 
            from unittest import TestSuite
16
 
            return TestSuite()
17
 
    except NoPyBaz:
18
 
        from unittest import TestSuite
19
 
        return TestSuite()