Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(293)

Side by Side Diff: tools/telemetry/third_party/coverage/lab/new-data.js

Issue 1366913004: Add coverage Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « tools/telemetry/third_party/coverage/lab/hack_pyc.py ('k') | tools/telemetry/third_party/coverage/lab/parser.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698