Hello, I am using Jupyter task (<https://docs.pref...
# prefect-community
f
Hello, I am using Jupyter task (https://docs.prefect.io/api/latest/tasks/jupyter.html#executenotebook) to execute notebook to generate HTML outputs in my flow, was wondering if there's a way to pass in
allow-errors
equivalent of jupyter-nbconvert (https://nbconvert.readthedocs.io/en/latest/config_options.html)
k
Looks like we don’t allow for it because you need to do:
Copy code
pm.execute_notebook(..., allow_errors=True)
but we have stuff hardcoded without kwargs. You can copy this code and edit it to support your use case
Allow errors suggestion from here
f
thanks, will try