diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-25 14:57:39 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-25 14:57:39 -0400 |
commit | a7acd74eabe3a0764c50bba7eb1f1dd5acef46c7 (patch) | |
tree | 144f0f229679f522f665d41debaf2323b5ad4d86 /coverage | |
parent | c813804af6c916d8cfdd175ad031b4042b13bfab (diff) | |
download | python-coveragepy-git-a7acd74eabe3a0764c50bba7eb1f1dd5acef46c7.tar.gz |
Better metacov file naming and combining
Now .metacov data files are named for the platform they are running on,
and are combined at the end of the test suite, so each platform only
has a dozen files to copy, instead of hundreds.
Diffstat (limited to 'coverage')
-rw-r--r-- | coverage/data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/data.py b/coverage/data.py index c19b5c64..41883398 100644 --- a/coverage/data.py +++ b/coverage/data.py @@ -102,7 +102,7 @@ class CoverageData(object): # * runs: a list of dicts of information about the coverage.py runs # contributing to the data:: # - # [ { "briefsys": "CPython 2.7.10 Darwin" }, ... ] + # [ { "brief_sys": "CPython 2.7.10 Darwin" }, ... ] # # Only one of `lines` or `arcs` will be present: with branch coverage, data # is stored as arcs. Without branch coverage, it is stored as lines. The |