diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-02-11 21:41:40 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-02-11 21:41:40 -0500 |
commit | 816586071f6fd9822477e8a7c1b2ed9b51ae2263 (patch) | |
tree | 767ab9d02ea2057d216f0c8af9b5d1c86afcab08 /CHANGES.txt | |
parent | 923c252fc95f5efa360caa4eb48607aec8a2c6b5 (diff) | |
download | python-coveragepy-816586071f6fd9822477e8a7c1b2ed9b51ae2263.tar.gz |
Treat config_file=".coveragerc" the same as config_file=True. #357
Diffstat (limited to 'CHANGES.txt')
-rw-r--r-- | CHANGES.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 3650a5a..7617fa7 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -11,6 +11,10 @@ Latest - Added 3.5.0a1 to the list of supported versions. +- If the `config_file` argument to the Coverage constructor is specified as + ".coveragerc", it is treated as if it were True. This means setup.cfg is + also examined, and a missing file is not considered an error (`issue 357`_). + - Wildly experimental: support for measuring processes started by the multiprocessing module. To use, set ``--concurrency=multiprocessing``, either on the command line or in the .coveragerc file (`issue 117`_). Thanks, @@ -26,6 +30,7 @@ Latest .. _issue 117: https://bitbucket.org/ned/coveragepy/issue/117/enable-coverage-measurement-of-code-run-by .. _issue 340: https://bitbucket.org/ned/coveragepy/issue/340/keyerror-subpy .. _issue 353: https://bitbucket.org/ned/coveragepy/issue/353/40a3-introduces-an-unexpected-third-case +.. _issue 357: https://bitbucket.org/ned/coveragepy/issue/357/behavior-changed-when-coveragerc-is Version 4.0a4 --- 25 January 2015 |