Skip to content

Commit

Permalink
1.9.0 release artifacts.
Browse files Browse the repository at this point in the history
  • Loading branch information
CleanCut committed Apr 8, 2015
1 parent 704fa0c commit 87b0029
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# Version 1.9.0 - 8 April 2015

- BREAKING CHANGE: --omit was renamed to --omit-patterns for consistency with
how other pattern-related options are named.

- BREAKING CHANGE: --pattern was renamed to --file-pattern for consistency with
how other pattern-related options are named.

- Added -n / --test-pattern option to further refine which tests are actually
run. Thanks to Monty Hindman for a pull request that got this feature going.

- Tweaked Travis CI builds


# Version 1.8.1 - 1 April 2015 (Not a joke!)

- Fixed issue where command-line arguments could not override config
Expand Down
13 changes: 8 additions & 5 deletions cli-options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,15 @@ Other Options:
Use this config file instead of the one pointed to by
environment variable GREEN_CONFIG or the default
~/.green
-p PATTERN, --pattern PATTERN
-p PATTERN, --file-pattern PATTERN
Pattern to match test files. Default is test*.py
-n PATTERN, --test-pattern PATTERN
Pattern to match test method names after 'test'.
Default is '*', meaning match methods named 'test*'.

Coverage Options (Coverage 3.7.1):
-r, --run-coverage Produce coverage output.
-o PATTERN, --omit PATTERN
-o PATTERN, --omit-patterns PATTERN
Comma-separated file-patterns to omit from coverage.
Default is something like
'*/test*,*/termstyle*,*/mock*,*(temp dir)*,*(python
Expand Down Expand Up @@ -97,6 +100,6 @@ CONFIG FILES

Example:

verbose = 2
logging = True
omit = myproj*,*prototype*
verbose = 2
logging = True
omit-patterns = myproj*,*prototype*
2 changes: 1 addition & 1 deletion green/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.8.1
1.9.0

0 comments on commit 87b0029

Please sign in to comment.