Configure maximum time #58
Replies: 1 comment
-
This is something I definitely want to support! Unfortunately, there isn't a good way to cancel a Julia task (which is how this would be implemented) at the moment. A still-running computation might interfere with other code running at the same time, or just hog resources unnecessarily, even if There are also multiple durations a timeout could apply to:
All of these have various consequences in regards to how "hard" the deadline implied by such a |
Beta Was this translation helpful? Give feedback.
-
Currently I can set
max_examples
, but the actual constraint I want to impose is on the duration of the execution, and I don't know how long each example takes. So I would like to set a timeout (timeout
,max_seconds
, etc) on@check
or in the config.Beta Was this translation helpful? Give feedback.
All reactions