New options for task_output settings #8136
jermarchandorange
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The task_output setting allow to configure the way outputs are print.
interleaveis the default value when run multiple jobs. So outputs are mixed.keep-orderprint output from tasks in the order they are defined at the end of all jobs.2 options could be added to chose the output sequence:
finised: print output of each tasks when its finished without mixed.finised_ordered: print output of each tasks when its finished without mixed and keep order.Example of
mise.tomlcontent file :With
task_output = 'interleave'(default value)With
task_output = 'keep-order'(existing value)With
task_output = 'finished'(proposition)With
task_output = 'order_finished'(proposition)Beta Was this translation helpful? Give feedback.
All reactions