I am trying to check if .ipynb files can be executed through cmd line, I have looked at runipy and papermill. I am more specifically looking for exit code 0, but none of the packages mentioned above check if the code fails anywhere. Papermill still returns exit code 0 even after a python exception. Are there any other packages that do this?
I am looking at something like
some_pkg execute-notebook my_notebook.ipynb
which could give me an exit code based on if the entire code is run successfully or not.