diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-25 06:03:18 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-25 06:03:18 -0500 |
commit | c0bc340c178b971e23f5a764b7923c1393c9cf6f (patch) | |
tree | f5dfcf4c19264e4603005cc8b92d82b6476cf28f /lab | |
parent | 203600b512fe3a038f6ff07286e1c06bb2d6d7d8 (diff) | |
download | python-coveragepy-git-c0bc340c178b971e23f5a764b7923c1393c9cf6f.tar.gz |
Update the sketch of the data format
Diffstat (limited to 'lab')
-rw-r--r-- | lab/new-data.js | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/lab/new-data.js b/lab/new-data.js index 973aa116..9cb8f715 100644 --- a/lab/new-data.js +++ b/lab/new-data.js @@ -1,13 +1,4 @@ { - "run" { - "collector": "coverage.py 4.0", - "config": { - "branch": true, - "source": ".", - }, - "collected": "20150711T090600", - }, - // As of now: "lines": { "a/b/c.py": [1, 2, 3, 4, 5], @@ -16,10 +7,20 @@ "arcs": { "a/b/c.py: [[1, 2], [2, 3], [4, 5]], }, - "plugins: { + "file_tracers": { "a/b/c.py": "fooey.plugin", }, + // We used to do this, but it got too bulky, removed in 4.0.1: + "run" { + "collector": "coverage.py 4.0", + "config": { + "branch": true, + "source": ".", + }, + "collected": "20150711T090600", + }, + // Maybe in the future? "files": { "a/b/c.py": { |