~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

Merge from bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1253
1253
        bzr commit -m 'imported project'
1254
1254
    """
1255
1255
 
1256
 
    _see_also = ['init-repo', 'branch', 'checkout']
 
1256
    _see_also = ['init-repository', 'branch', 'checkout']
1257
1257
    takes_args = ['location?']
1258
1258
    takes_options = [
1259
1259
        Option('create-prefix',
2510
2510
                            short_name='x',
2511
2511
                            help='Exclude tests that match this regular'
2512
2512
                                 ' expression.'),
 
2513
                     Option('strict', help='Fail on missing dependencies or '
 
2514
                            'known failures.'),
2513
2515
                     ]
2514
2516
    encoding_type = 'replace'
2515
2517
 
2517
2519
            transport=None, benchmark=None,
2518
2520
            lsprof_timed=None, cache_dir=None,
2519
2521
            first=False, list_only=False,
2520
 
            randomize=None, exclude=None):
 
2522
            randomize=None, exclude=None, strict=False):
2521
2523
        import bzrlib.ui
2522
2524
        from bzrlib.tests import selftest
2523
2525
        import bzrlib.benchmarks as benchmarks
2555
2557
                              matching_tests_first=first,
2556
2558
                              list_only=list_only,
2557
2559
                              random_seed=randomize,
2558
 
                              exclude_pattern=exclude
 
2560
                              exclude_pattern=exclude,
 
2561
                              strict=strict,
2559
2562
                              )
2560
2563
        finally:
2561
2564
            if benchfile is not None: