/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Andrew Bennetts
  • Date: 2009-12-03 05:57:41 UTC
  • mfrom: (4857 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4869.
  • Revision ID: andrew.bennetts@canonical.com-20091203055741-vmmg0fmjgjw2pwvu
MergeĀ lp:bzr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
940
940
 
941
941
    --coverage
942
942
        Generate line coverage report in the specified directory.
 
943
 
 
944
    --concurrency
 
945
        Specify the number of processes that can be run concurrently (selftest).
943
946
    """
944
947
    argv = list(argv)
945
948
    trace.mutter("bzr arguments: %r", argv)
970
973
            opt_no_aliases = True
971
974
        elif a == '--builtin':
972
975
            opt_builtin = True
 
976
        elif a == '--concurrency':
 
977
            os.environ['BZR_CONCURRENCY'] = argv[i + 1]
 
978
            i += 1
973
979
        elif a == '--coverage':
974
980
            opt_coverage_dir = argv[i + 1]
975
981
            i += 1