~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Martin Pool
  • Date: 2006-02-01 06:37:13 UTC
  • Revision ID: mbp@sourcefrog.net-20060201063713-4cb4d1afcaeba538
Improved help text for bzr selftest

Show diffs side-by-side

added added

removed removed

Lines of Context:
1417
1417
    
1418
1418
    If arguments are given, they are regular expressions that say
1419
1419
    which tests should run.
 
1420
 
 
1421
    If the global option '--no-plugins' is given, plugins are not loaded
 
1422
    before running the selftests.  This has two effects: features provided or
 
1423
    modified by plugins will not be tested, and tests provided by plugins will
 
1424
    not be run.
 
1425
 
 
1426
    examples:
 
1427
        bzr selftest ignore
 
1428
        bzr --no-plugins selftest -v
1420
1429
    """
1421
1430
    # TODO: --list should give a list of all available tests
1422
1431
    hidden = True
1423
1432
    takes_args = ['testspecs*']
1424
 
    takes_options = ['verbose', 
 
1433
    takes_options = ['verbose',
1425
1434
                     Option('one', help='stop when one test fails'),
1426
1435
                     Option('keep-output', 
1427
1436
                            help='keep output directories when tests fail')