Skip to content

Commit

Permalink
Fixed another spelling error. Updated cli-options.
Browse files Browse the repository at this point in the history
  • Loading branch information
CleanCut committed Dec 21, 2016
1 parent 7db6a28 commit efd5afe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions cli-options.txt
Expand Up @@ -80,15 +80,15 @@ Other Options:
Pattern to match test method names after 'test'.
Default is '*', meaning match methods named 'test*'.

Coverage Options (Coverage 4.0.3):
Coverage Options (Coverage 4.2):
-r, --run-coverage Produce coverage output.
-O, --clear-omit Green tries really hard to set up a good list of
patterns of files to omit from coverage reports. If
the default list catches files that you DO want to
cover you can specify this flag to leave the default
list empty to start with. You can then add patterns
back in with --omit-add. The default list is
somethinglike'*/test*,*/termstyle*,*/mock*,*(temp
back in with --omit-add. The default list is something
like'*/test*,*/termstyle*,*/mock*,*(temp
dir)*,*(python system packages)*' -- only longer.
-u PATTERN, --include-patterns PATTERN
Comma-separated file-patterns to includie in coverage.
Expand Down
2 changes: 1 addition & 1 deletion green/config.py
Expand Up @@ -229,7 +229,7 @@ def parseArguments(): # pragma: no cover
default=argparse.SUPPRESS))
store_opt(out_args.add_argument('-v', '--verbose', action='count',
help=("Verbose. Can be specified up to three times for more "
"vebosity. Recommended levels are -v and -vv."),
"verbosity. Recommended levels are -v and -vv."),
default=argparse.SUPPRESS))

other_args = parser.add_argument_group("Other Options")
Expand Down

0 comments on commit efd5afe

Please sign in to comment.