Slackbot
10/10/2022, 9:36 AMEduardo
params.resources_
is the way to go currently. however, since params.resources_
looks at the whole file you might get some false positives (e.g., task "some-task" calls function A in utils.py, but since resources_
looks at the whole file, if you modify function B, "some-task" will execute again)
we have a stalled branch that will provide a much better experience here and will automatically detect deep dependencies. e.g. if "some-task" calls function A in utils.py, only chances to such function will cause the task to re-run. the implementation is almost complete but it needs more testing, so if you're up for the challenge, feel free to take on it!Sam Denny
10/10/2022, 2:11 PMEduardo