test-backend: Flush stdout when starting testing.

This makes the output more properly ordered.
This commit is contained in:
Tim Abbott 2019-05-28 14:31:18 -07:00
parent 4442509ec3
commit 7b6f219663
1 changed files with 2 additions and 2 deletions

View File

@ -384,9 +384,9 @@ def main() -> None:
if parallel > 1:
print("-- Running tests in parallel mode with {} "
"processes.".format(parallel))
"processes.".format(parallel), flush=True)
else:
print("-- Running tests in serial mode.")
print("-- Running tests in serial mode.", flush=True)
test_runner = TestRunner(failfast=options.fatal_errors, verbosity=2,
parallel=parallel, reverse=options.reverse,