~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/__init__.py

  • Committer: Martin Pool
  • Date: 2005-06-24 11:11:15 UTC
  • Revision ID: mbp@sourcefrog.net-20050624111115-0d241d8f7aa1de68
- run blackbox tests last because they're slow

Show diffs side-by-side

added added

removed removed

Lines of Context:
230
230
            bzrlib.selftest.versioning:
231
231
        suite.addTest(tl.loadTestsFromModule(m))
232
232
 
233
 
    suite.addTest(bzrlib.selftest.blackbox.suite())
234
 
 
235
233
    for m in bzrlib.store, bzrlib.inventory, bzrlib.branch, bzrlib.osutils, \
236
234
            bzrlib.commands:
237
235
        suite.addTest(DocTestSuite(m))
238
236
 
 
237
    suite.addTest(bzrlib.selftest.blackbox.suite())
 
238
 
239
239
    # save stdout & stderr so there's no leakage from code-under-test
240
240
    real_stdout = sys.stdout
241
241
    real_stderr = sys.stderr