When debugging a test calling nosetests.main() in an IDE (pyCharm) no results will be shown because output is captured.
I understand that if I were calling nosetests from the command prompt I can supply the -s argument, but how do I do this programmatically so it is convenient in an IDE?
You can call
nose.run()instead and pass parameters, including-s, something like: