summaryrefslogtreecommitdiff
path: root/lab
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-07-24 12:21:15 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-07-24 12:21:15 -0400
commit7d968589567efd3e6e8765f7b1605e2e6d7f1ba0 (patch)
tree8171b1c1dced0f5264a2c7dbad17d8967e35638a /lab
parentdc0d0c613de54cd5af74a1d3ac9d86235dc0aee9 (diff)
downloadpython-coveragepy-7d968589567efd3e6e8765f7b1605e2e6d7f1ba0.tar.gz
Use more specific names than 'plugins', since there will be more of them in the future.
Diffstat (limited to 'lab')
-rw-r--r--lab/new-data.js28
1 files changed, 22 insertions, 6 deletions
diff --git a/lab/new-data.js b/lab/new-data.js
index 95f16a8..973aa11 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",