From 2a008eaee636cdd03202e9def9005743c4bdad1b Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 25 Aug 2015 14:57:39 -0400 Subject: 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. --- coverage/data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coverage/data.py') diff --git a/coverage/data.py b/coverage/data.py index c19b5c6..4188339 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 -- cgit v1.2.1