summaryrefslogtreecommitdiff
path: root/CHANGES.rst
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-10-16 08:16:38 -0400
committerNed Batchelder <ned@nedbatchelder.com>2021-10-16 10:46:35 -0400
commit99cf3cbd331e03750e1a251d36d1849dc59b427e (patch)
treed71ea97f1488e19c3c6cb2d1851d5aec0a91cba0 /CHANGES.rst
parent702c927fed2b2120ed2e4aa66668170d4120ca30 (diff)
downloadpython-coveragepy-git-99cf3cbd331e03750e1a251d36d1849dc59b427e.tar.gz
feat: `coverage run` now sets the COVERAGE_RUN environment variable
Diffstat (limited to 'CHANGES.rst')
-rw-r--r--CHANGES.rst16
1 files changed, 11 insertions, 5 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 81e02732..95b34a77 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -23,12 +23,18 @@ This list is detailed and covers changes in each pre-release version.
Unreleased
----------
-- When sorting human-readable names, numeric components are sorted correctly:
- file10.py will appear after file9.py. This applies to file names, module
- names, environment variables, and test contexts.
+- Feature: Coverage now sets an environment variable, ``COVERAGE_RUN`` when
+ running your code with the ``coverage run`` command. The value is not
+ important, and may change in the future. Closes `issue 553`_.
-- Branch coverage measurement is faster, though you might only notice on
- code that is executed many times, such as long-running loops.
+- Fix: When sorting human-readable names, numeric components are sorted
+ correctly: file10.py will appear after file9.py. This applies to file names,
+ module names, environment variables, and test contexts.
+
+- Performance: Branch coverage measurement is faster, though you might only
+ notice on code that is executed many times, such as long-running loops.
+
+ .. _issue 553: https://github.com/nedbat/coveragepy/issues/553
.. _changes_602: