OLD | NEW |
(Empty) | |
| 1 { |
| 2 "run" { |
| 3 "collector": "coverage.py 4.0", |
| 4 "config": { |
| 5 "branch": true, |
| 6 "source": ".", |
| 7 }, |
| 8 "collected": "20150711T090600", |
| 9 }, |
| 10 |
| 11 // As of now: |
| 12 "lines": { |
| 13 "a/b/c.py": [1, 2, 3, 4, 5], |
| 14 "a/b/d.py": [4, 5, 6, 7, 8], |
| 15 }, |
| 16 "arcs": { |
| 17 "a/b/c.py: [[1, 2], [2, 3], [4, 5]], |
| 18 }, |
| 19 "plugins: { |
| 20 "a/b/c.py": "fooey.plugin", |
| 21 }, |
| 22 |
| 23 // Maybe in the future? |
| 24 "files": { |
| 25 "a/b/c.py": { |
| 26 "lines": [1, 2, 3, 4, 5], |
| 27 "arcs": [ |
| 28 [1, 2], [3, 4], [5, -1], |
| 29 ], |
| 30 |
| 31 "plugin": "django.coverage", |
| 32 |
| 33 "lines": { |
| 34 "1": { |
| 35 "tests": [ |
| 36 "foo/bar/test.py:TheTest.test_it", |
| 37 "asdasdasd", |
| 38 ], |
| 39 "tests": [17, 34, 23, 12389], |
| 40 }, |
| 41 "2": { |
| 42 "count": 23, |
| 43 }, |
| 44 "3": {}, |
| 45 "4": {}, |
| 46 "17": {}, |
| 47 }, |
| 48 |
| 49 "arcs": { |
| 50 "1.2": {}, |
| 51 "2.3": {}, |
| 52 "3.-1": {}, |
| 53 }, |
| 54 }, |
| 55 }, |
| 56 |
| 57 "tests": [ |
| 58 { |
| 59 "file": "a/b/c.py", |
| 60 "test": "test_it", |
| 61 }, |
| 62 { |
| 63 "file": "a/b/d.py", |
| 64 "test": "TheTest.test_it", |
| 65 }, |
| 66 ], |
| 67 |
| 68 "runs": [ |
| 69 { |
| 70 // info about each run? |
| 71 }, |
| 72 { ... }, |
| 73 ], |
| 74 } |
OLD | NEW |