Add new line to status

This commit is contained in:
alesapin 2021-01-28 11:55:20 +03:00
parent 6c5302969b
commit 879adc5437

View File

@ -434,6 +434,9 @@ def run_tests_array(all_tests_with_params):
if os.path.exists(stderr_file):
os.remove(stderr_file)
if status and not status.endswith('\n'):
status += '\n'
sys.stdout.write(status)
sys.stdout.flush()
except KeyboardInterrupt as e: