diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-12-31 03:42:56 +0530 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-01-02 17:18:07 -0500 |
commit | 89ea236b023bab4d9f861aee69af0acd5746233c (patch) | |
tree | 4d588c66d466f390c654482c0caff4c6af995380 /run_project_tests.py | |
parent | dc70916ca4cf35cfd2ef5f57b10a629a73fc3554 (diff) | |
download | meson-89ea236b023bab4d9f861aee69af0acd5746233c.zip meson-89ea236b023bab4d9f861aee69af0acd5746233c.tar.gz meson-89ea236b023bab4d9f861aee69af0acd5746233c.tar.bz2 |
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.
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index e91fbb7..c26b885 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') |