ipython_nose
ipython_nose copied to clipboard
Use stdout.write() to print the summary test output in the notebook
This does what you'd expect:
import sys
import time
sys.stdout.write('a')
sys.stdout.flush()
time.sleep(5)
sys.stdout.write('b')
But when I do the equivalent within the extension/plugin, I get a separate line for each test's output. Not sure why.