diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-10-10 08:03:14 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-10-10 08:03:14 -0400 |
commit | c69d71e383de5ab90ddf475e6ddef10b9100e796 (patch) | |
tree | 112c4029d8659eb044ad755e71a5f596d9e7e43c | |
parent | 3b8f4a0b86f8796f1e7925b9c6593a9d5198b437 (diff) | |
download | python-coveragepy-git-c69d71e383de5ab90ddf475e6ddef10b9100e796.tar.gz |
Remove brief_sys from .coverage, until we have a better plan. #415.
-rw-r--r-- | CHANGES.rst | 7 | ||||
-rw-r--r-- | coverage/control.py | 9 |
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) |