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

Side by Side Diff: recipe_modules/python/example.expected/basic.json

Issue 2875823002: Add vpython support to Python recipe module. (Closed)
Patch Set: rebase Created 3 years, 7 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
« no previous file with comments | « recipe_modules/python/example.py ('k') | recipe_modules/python/example.resources/test.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "import sys; sys.exit(0)" 6 "import sys; sys.exit(0)"
7 ], 7 ],
8 "name": "success", 8 "name": "success",
9 "~followup_annotations": [ 9 "~followup_annotations": [
10 "@@@STEP_LOG_LINE@success@This step is a success@@@", 10 "@@@STEP_LOG_LINE@success@This step is a success@@@",
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 "-u", 42 "-u",
43 "print \"Hello World!\"" 43 "print \"Hello World!\""
44 ], 44 ],
45 "name": "inline", 45 "name": "inline",
46 "~followup_annotations": [ 46 "~followup_annotations": [
47 "@@@STEP_LOG_LINE@python.inline@print \"Hello World!\"@@@", 47 "@@@STEP_LOG_LINE@python.inline@print \"Hello World!\"@@@",
48 "@@@STEP_LOG_END@python.inline@@@" 48 "@@@STEP_LOG_END@python.inline@@@"
49 ] 49 ]
50 }, 50 },
51 { 51 {
52 "cmd": [
53 "vpython",
54 "-u",
55 "RECIPE[recipe_engine::python:example].resources/test.py",
56 "--verify-enum34"
57 ],
58 "name": "run vpython.inlinespec"
59 },
60 {
61 "cmd": [
62 "vpython",
63 "-spec",
64 "RECIPE[recipe_engine::python:example].resources/test.vpython",
65 "-u",
66 "RECIPE[recipe_engine::python:example].resources/test.py",
67 "--verify-six"
68 ],
69 "name": "run vpython.spec"
70 },
71 {
52 "name": "$result", 72 "name": "$result",
53 "recipe_result": null, 73 "recipe_result": null,
54 "status_code": 0 74 "status_code": 0
55 } 75 }
56 ] 76 ]
OLDNEW
« no previous file with comments | « recipe_modules/python/example.py ('k') | recipe_modules/python/example.resources/test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698