regression: fix status line behaviour to match docs.

This commit is contained in:
Japheth Lim 2016-01-08 17:04:03 +11:00
parent 81fe5cbd67
commit 46afb6d0fd
1 changed files with 1 additions and 1 deletions

View File

@ -314,7 +314,7 @@ def main():
while tests_queue or current_jobs:
# Update status line with pending jobs.
if current_jobs and sys.stdout.isatty():
if current_jobs and sys.stdout.isatty() and not args.verbose:
tty_status_line[0] = "Running: " + ", ".join(sorted(current_jobs.keys()))
print(tty_status_line[0] + "\r", end="")
sys.stdout.flush()