~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to tests/__init__.py

  • Committer: Michael Ellerman
  • Date: 2005-11-29 19:15:49 UTC
  • mto: (0.3.1 shelf-dev) (325.1.2 bzrtools)
  • mto: This revision was merged to the branch mainline in revision 334.
  • Revision ID: michael@ellerman.id.au-20051129191549-1d4e5723f337c6e9
Remove hack to make errors prettier now that mainline bzr prints them in a
nicer way.

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()