~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_branch/test_branch.py

(jelmer) Another set of fixes to make it possible to run the bzr.dev tests
 against foreign plugins. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
420
420
        try:
421
421
            repo = self.make_repository('.', shared=True)
422
422
        except errors.IncompatibleFormat:
423
 
            return
 
423
            raise tests.TestNotApplicable("requires shared repository support")
424
424
        child_transport = repo.bzrdir.root_transport.clone('child')
425
425
        child_transport.mkdir('.')
426
426
        try:
427
427
            child_dir = self.bzrdir_format.initialize_on_transport(child_transport)
428
428
        except errors.UninitializableFormat:
429
 
            return
 
429
            raise tests.TestNotApplicable("control dir format not initializable")
430
430
        try:
431
431
            child_branch = self.branch_format.initialize(child_dir)
432
432
        except errors.UninitializableFormat: