From abfbe42d6f867b6ef3ebc9b36c9473b89db3c16e Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Mon, 14 Aug 2017 21:11:04 +0100 Subject: [PATCH] Add -u flag so the test output is in the right order on Appveyor --- appveyor.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 2c7debeb..1f8d71f2 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,3 +1,5 @@ build_script: - pip install . - - python ./run_tests.py + # the '-u' flag is required so the output is in the correct order. + # See https://github.com/joerick/cibuildwheel/pull/24 for more info. + - python -u ./run_tests.py