ipython_nose icon indicating copy to clipboard operation
ipython_nose copied to clipboard

Use stdout.write() to print the summary test output in the notebook

Open eloraburns opened this issue 13 years ago • 0 comments

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.

eloraburns avatar Dec 18 '12 05:12 eloraburns