From ef51996a2c4f0096965ab543ad96bb8cc5a6158f Mon Sep 17 00:00:00 2001 From: lethosor Date: Sat, 28 Mar 2020 13:19:38 -0400 Subject: [PATCH] Log error when DF exits non-successfully --- travis/run-tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis/run-tests.py b/travis/run-tests.py index df62b9f7e..029c48abd 100644 --- a/travis/run-tests.py +++ b/travis/run-tests.py @@ -99,7 +99,7 @@ try: if err: print('WARN: DF produced stderr: ' + repr(err[:5000])) if process.returncode != 0: - print('WARN: DF exited with ' + repr(process.returncode)) + print('ERROR: DF exited with ' + repr(process.returncode)) finally: print('\nRestoring original init.txt') shutil.copyfile(init_txt_path + '.orig', init_txt_path)