Set the execution as `stopped` using a special 99 exitcode value.
(self)
| 2179 | self.set_run_ended(exitcode=88) |
| 2180 | |
| 2181 | def set_run_stopped(self): |
| 2182 | """Set the execution as `stopped` using a special 99 exitcode value.""" |
| 2183 | self.set_run_ended(exitcode=99) |
| 2184 | |
| 2185 | def reset_run(self): |
| 2186 | """Reset the run-related fields.""" |