You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/taskgraph/main.py
+8-6Lines changed: 8 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -228,30 +228,32 @@ def logfile(spec):
228
228
229
229
@command(
230
230
"tasks",
231
-
help="Show all tasks in the taskgraph.",
231
+
help="Show the full task set in the task graph. The full task set includes all tasks defined by any kind, without edges (dependencies) between them.",
232
232
defaults={"graph_attr": "full_task_set"},
233
233
)
234
234
@command(
235
-
"full", help="Show the full taskgraph.", defaults={"graph_attr": "full_task_graph"}
235
+
"full",
236
+
help="Show the full task graph. The full task graph consists of the full task set, with edges (dependencies) between tasks.",
237
+
defaults={"graph_attr": "full_task_graph"},
236
238
)
237
239
@command(
238
240
"target",
239
-
help="Show the set of target tasks.",
241
+
help="Show the target task set in the task graph. The target task set includes the tasks which have indicated they should be run, without edges (dependencies) between them.",
240
242
defaults={"graph_attr": "target_task_set"},
241
243
)
242
244
@command(
243
245
"target-graph",
244
-
help="Show the target graph.",
246
+
help="Show the target task graph. The target task graph consists of the target task set, with edges (dependencies) between tasks.",
245
247
defaults={"graph_attr": "target_task_graph"},
246
248
)
247
249
@command(
248
250
"optimized",
249
-
help="Show the optimized graph.",
251
+
help="Show the optimized task graph, which is the target task set with tasks optimized out (filtered, omitted, or replaced) and edges representing dependencies.",
250
252
defaults={"graph_attr": "optimized_task_graph"},
251
253
)
252
254
@command(
253
255
"morphed",
254
-
help="Show the morphed graph.",
256
+
help="Show the morphed graph, which is the optimized task graph with additional morphs applied. It retains the same meaning as the optimized task graph but in a form more palatable to TaskCluster.",
255
257
defaults={"graph_attr": "morphed_task_graph"},
256
258
)
257
259
@argument("--root", "-r", help="root of the taskgraph definition relative to topsrcdir")
0 commit comments