alwaysRun property

bool? alwaysRun
getter/setter pair

By default, after a Runnable fails, no further Runnable are executed.

This flag indicates that this Runnable must be run even if the Task has already failed. This is useful for Runnables that copy output files off of the VM or for debugging. The always_run flag does not override the Task's overall max_run_duration. If the max_run_duration has expired then no further Runnables will execute, not even always_run Runnables.

Implementation

core.bool? alwaysRun;