From 93d653985ad828090265111722664914971f0e68 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Tue, 24 Sep 2013 13:19:26 -0700 Subject: [PATCH] Hopefully fix ordering of output on ShiningPanda --- IPython/testing/iptestcontroller.py | 1 + 1 file changed, 1 insertion(+) diff --git a/IPython/testing/iptestcontroller.py b/IPython/testing/iptestcontroller.py index a21e182c1..c77d42ef2 100644 --- a/IPython/testing/iptestcontroller.py +++ b/IPython/testing/iptestcontroller.py @@ -291,6 +291,7 @@ def run_iptestall(options): # This actually means sequential, i.e. with 1 job for controller in to_run: print('IPython test group:', controller.section) + sys.stdout.flush() # Show in correct order when output is piped controller, res = do_run(controller) if res: failed.append(controller)