summaryrefslogtreecommitdiff
path: root/coverage
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-08-25 14:57:39 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-08-25 14:57:39 -0400
commita7acd74eabe3a0764c50bba7eb1f1dd5acef46c7 (patch)
tree144f0f229679f522f665d41debaf2323b5ad4d86 /coverage
parentc813804af6c916d8cfdd175ad031b4042b13bfab (diff)
downloadpython-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.py2
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