From a7acd74eabe3a0764c50bba7eb1f1dd5acef46c7 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') 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 -- cgit v1.2.1