Context: I am trying to use this kernel to write part f the user documentation of our HPC cluster, to make it testable with nbval in a CI fashion. Unfortunately, one of the bash commands that I need to show partially "breaks" the kernel, in the sense that: - The output and the actions of the command seem to happen normally, but the kernel reports an error (`: 1` after the executed cell) - it does not fail when run in the terminal, on the same machine where the kernel would run (exit status is 0) - after that command, all subsequent commands display their output correctly but still report a failure with `: 1` after they have run in their cell (even a simple `ls` command) - this particular command takes some minutes to run and might also need quite some memory - Also the variants ``` <command> &> outputfile ``` and ``` <command> &> outputfile || true ``` still cause the same behviour. - when running jupyter with `--debug`, I get, among all the messages: ``` [D 2025-08-12 16:52:34.177 ServerApp] activity on 1bb662fb-23b5-4d79-bfa6-d453b6bf4f38: stream [D 2025-08-12 16:52:34.185 ServerApp] activity on 1bb662fb-23b5-4d79-bfa6-d453b6bf4f38: stream [D 2025-08-12 16:52:34.238 ServerApp] activity on 1bb662fb-23b5-4d79-bfa6-d453b6bf4f38: error [D 2025-08-12 16:52:34.243 ServerApp] activity on 1bb662fb-23b5-4d79-bfa6-d453b6bf4f38: status ``` But I do not get additional information about the what the failure really is. How can I get more detailed information? (Thank you)