diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-24 12:21:15 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-24 12:21:15 -0400 |
commit | 0eb73a211c01852cd3aa9be1c8cc5f9abdb5af32 (patch) | |
tree | 81b51481690baad7e5ccbf866b83f0b5fc11a742 /lab/new-data.js | |
parent | b99fbf1ff6a06309ecf6cce8d6ae97dee5626784 (diff) | |
download | python-coveragepy-git-0eb73a211c01852cd3aa9be1c8cc5f9abdb5af32.tar.gz |
Use more specific names than 'plugins', since there will be more of them in the future.
Diffstat (limited to 'lab/new-data.js')
-rw-r--r-- | lab/new-data.js | 28 |
1 files changed, 22 insertions, 6 deletions
diff --git a/lab/new-data.js b/lab/new-data.js index 95f16a8f..973aa116 100644 --- a/lab/new-data.js +++ b/lab/new-data.js @@ -1,15 +1,31 @@ { - "collector": "coverage.py 4.0", - "config": { - "branch": true, - "source": ".", + "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], + "a/b/d.py": [4, 5, 6, 7, 8], }, - "collected": "20150711T090600", + "arcs": { + "a/b/c.py: [[1, 2], [2, 3], [4, 5]], + }, + "plugins: { + "a/b/c.py": "fooey.plugin", + }, + + // Maybe in the future? "files": { "a/b/c.py": { "lines": [1, 2, 3, 4, 5], "arcs": [ - "1.2", "3.4", "5.-1" + [1, 2], [3, 4], [5, -1], ], "plugin": "django.coverage", |