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
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -228,30 +228,30 @@ 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 taskgraph. 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", help="Show the full taskgraph. The full taskgraph consists of the full task set, with edges (dependencies) between tasks.", defaults={"graph_attr": "full_task_graph"}
236
236
)
237
237
@command(
238
238
"target",
239
-
help="Show the set of target tasks.",
239
+
help="Show the target task set in the taskgraph. The target task set includes the tasks which have indicated they should be run, without edges (dependencies) between them.",
240
240
defaults={"graph_attr": "target_task_set"},
241
241
)
242
242
@command(
243
243
"target-graph",
244
-
help="Show the target graph.",
244
+
help="Show the target taskgraph. The target taskgraph consists of the target task set, with edges (dependencies) between tasks.",
245
245
defaults={"graph_attr": "target_task_graph"},
246
246
)
247
247
@command(
248
248
"optimized",
249
-
help="Show the optimized graph.",
249
+
help="Show the optimized taskgraph, which is the target task set with tasks optimized out (filtered, omitted, or replaced) and edges representing dependencies.",
250
250
defaults={"graph_attr": "optimized_task_graph"},
251
251
)
252
252
@command(
253
253
"morphed",
254
-
help="Show the morphed graph.",
254
+
help="Show the morphed graph, which is the optimized taskgraph with additional morphs applied. It retains the same meaning as the optimized taskgraph but in a form more palatable to TaskCluster.",
255
255
defaults={"graph_attr": "morphed_task_graph"},
256
256
)
257
257
@argument("--root", "-r", help="root of the taskgraph definition relative to topsrcdir")
0 commit comments