diff options
author | Ned Batchelder <nedbat@gmail.com> | 2015-07-30 07:14:54 -0400 |
---|---|---|
committer | Ned Batchelder <nedbat@gmail.com> | 2015-07-30 07:14:54 -0400 |
commit | 31f58b1165dd67d443b1e5fd0403574774a23bfc (patch) | |
tree | 06bb807d8a377c95156bdc812c76be6819b50cf1 /coverage/cmdline.py | |
parent | 07233cf423384d0a5bb819382d2005e49d9d945c (diff) | |
parent | c302b891209baf67abcdb1d49896397deea46f67 (diff) | |
download | python-coveragepy-git-31f58b1165dd67d443b1e5fd0403574774a23bfc.tar.gz |
Merged in atodorov/coverage.py/combine_files_and_dirs (pull request #62)
Extend combine parameters to allow for file names and shell globs
Diffstat (limited to 'coverage/cmdline.py')
-rw-r--r-- | coverage/cmdline.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/coverage/cmdline.py b/coverage/cmdline.py index 669c569e..499444ca 100644 --- a/coverage/cmdline.py +++ b/coverage/cmdline.py @@ -252,13 +252,13 @@ CMDS = { ), 'combine': CmdOptionParser("combine", GLOBAL_ARGS, - usage = "<dir1> <dir2> ... <dirN>", + usage = "<path1> <path2> ... <pathN>", description = "Combine data from multiple coverage files collected " "with 'run -p'. The combined results are written to a single " "file representing the union of the data. The positional " - "arguments are directories from which the data files should be " - "combined. By default, only data files in the current directory " - "are combined." + "arguments are files or directories or shell globs " + "representing the data files which should be combined. " + "By default, only data files in the current directory are combined." ), 'debug': CmdOptionParser("debug", GLOBAL_ARGS, |