On 2019-07-26 at 08:58 -04, Martin Alsinet <mar...@alsinet.com.ar> wrote... > I usually have a shell buffer nearby and go there to inspect the > failed tests when I get no output. The problem is that shell blocks do > not capture stderr. John Kitchin wrote a blog post > <http://kitchingroup.cheme.cmu.edu/blog/2015/01/04/Redirecting-stderr-in-org-mode-shell-blocks/> > about this problem and provided a solution that may work for you, but > I have not tried it yet.
Ah yes... from my own comments there: #+begin_src sh :results raw drawer :prologue "exec 2>&1" :epilogue ":" python -m pytest ./utils #+end_src Thanks for reminding me about my past self. -k.