From c5cc2a8cf9edc00ff0ed695e8a0b5c98474c0abf Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 21 Sep 2014 19:01:03 +0200 Subject: [PATCH] flush stdout after printing messages, might fix output ordering on drone.io --- tests/run.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/run.py b/tests/run.py index 8643606d2..e143ac15f 100755 --- a/tests/run.py +++ b/tests/run.py @@ -45,5 +45,7 @@ if tempdir.exists(): tempdir.makedirs() print('Running Sphinx test suite...') +sys.stdout.flush() + import nose nose.main()