From 89ea236b023bab4d9f861aee69af0acd5746233c Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Sat, 31 Dec 2016 03:42:56 +0530 Subject: project tests: Always print the logs of failing tests There is never any reason to not do this since this script is supposed to be run by developers and testers who are concerned with the details of the problems. It also helps with intermittent or hard-to-reproduce errors. --- run_project_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_project_tests.py b/run_project_tests.py index e91fbb7ba..c26b885e9 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -555,7 +555,7 @@ if __name__ == '__main__': print('\nTotal passed tests:', passing_tests) print('Total failed tests:', failing_tests) print('Total skipped tests:', skipped_tests) - if failing_tests > 0 and ('TRAVIS' in os.environ or 'APPVEYOR' in os.environ): + if failing_tests > 0: print('\nMesonlogs of failing tests\n') for l in failing_logs: print(l, '\n') -- cgit v1.3