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

Side by Side Diff: recipes/example/nested.expected/basic.json

Issue 2806363004: Enable strict coverage for step module (Closed)
Patch Set: review Created 3 years, 8 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 | « recipes/example/nested.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 [
2 {
3 "cmd": [],
4 "name": "complicated thing"
5 },
6 {
7 "cmd": [],
8 "name": "complicated thing.first part",
9 "~followup_annotations": [
10 "@@@STEP_NEST_LEVEL@1@@@"
11 ]
12 },
13 {
14 "cmd": [
15 "sleep",
16 "1"
17 ],
18 "name": "complicated thing.first part.wait a bit",
19 "~followup_annotations": [
20 "@@@STEP_NEST_LEVEL@2@@@"
21 ]
22 },
23 {
24 "cmd": [
25 "echo",
26 "herpy"
27 ],
28 "name": "complicated thing.attempt number.one",
29 "~followup_annotations": [
30 "@@@STEP_NEST_LEVEL@1@@@"
31 ]
32 },
33 {
34 "cmd": [
35 "echo",
36 "derpy"
37 ],
38 "name": "complicated thing.attempt number.two",
39 "~followup_annotations": [
40 "@@@STEP_NEST_LEVEL@1@@@"
41 ]
42 },
43 {
44 "cmd": [],
45 "name": "inherit status"
46 },
47 {
48 "cmd": [],
49 "name": "inherit status.inner step",
50 "~followup_annotations": [
51 "@@@STEP_NEST_LEVEL@1@@@",
52 "@@@STEP_EXCEPTION@@@"
53 ]
54 },
55 {
56 "cmd": [],
57 "name": "versatile status",
58 "~followup_annotations": [
59 "@@@STEP_FAILURE@@@"
60 ]
61 },
62 {
63 "cmd": [],
64 "name": "versatile status.inner step",
65 "~followup_annotations": [
66 "@@@STEP_NEST_LEVEL@1@@@"
67 ]
68 },
69 {
70 "cmd": [],
71 "name": "versatile status.inner step.even deeper",
72 "~followup_annotations": [
73 "@@@STEP_NEST_LEVEL@2@@@"
74 ]
75 },
76 {
77 "cmd": [
78 "sleep",
79 "1"
80 ],
81 "name": "simple thing"
82 },
83 {
84 "name": "$result",
85 "recipe_result": null,
86 "status_code": 0
87 }
88 ]
OLDNEW
« no previous file with comments | « recipes/example/nested.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698