summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.rst7
-rw-r--r--coverage/control.py9
2 files changed, 7 insertions, 9 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index c802bff1..fe7fcd60 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -14,6 +14,12 @@ Version 4.0.1
coverage.py v3.7.1 behavior, which silently ignored unreadable files.
Prompted by `issue 418`_.
+- In 4.0, data files recorded a summary of the system on which it was run.
+ Combined data files would keep all of those summaries. This could lead to
+ enormous data files consisting of mostly repetitive useless information. That
+ summary is now gone, fixing `issue 415`_. If you want summary information,
+ get in touch, and we'll figure out a better way to do it.
+
- Test suites that mocked os.path.exists would experience strange failures, due
to coverage.py using their mock inadvertently. This is now fixed, closing
`issue 416`_.
@@ -25,6 +31,7 @@ Version 4.0.1
`issue 419`_.
.. _issue 397: https://bitbucket.org/ned/coveragepy/issues/397/stopping-and-resuming-coverage-with
+.. _issue 415: https://bitbucket.org/ned/coveragepy/issues/415/repeated-coveragedataupdates-cause
.. _issue 416: https://bitbucket.org/ned/coveragepy/issues/416/mocking-ospathexists-causes-failures
.. _issue 418: https://bitbucket.org/ned/coveragepy/issues/418/json-parse-error
.. _issue 419: https://bitbucket.org/ned/coveragepy/issues/419/nosource-no-source-for-code-path-to-c
diff --git a/coverage/control.py b/coverage/control.py
index 16b5f35e..b7ba055d 100644
--- a/coverage/control.py
+++ b/coverage/control.py
@@ -839,15 +839,6 @@ class Coverage(object):
self.data.touch_file(py_file)
- # Add run information.
- self.data.add_run_info(
- brief_sys=" ".join([
- platform.python_implementation(),
- platform.python_version(),
- platform.system(),
- ])
- )
-
if self.config.note:
self.data.add_run_info(note=self.config.note)