diff options
Diffstat (limited to 'run_cross_test.py')
-rwxr-xr-x | run_cross_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_cross_test.py b/run_cross_test.py index 6e04fa2..b2ef6be 100755 --- a/run_cross_test.py +++ b/run_cross_test.py @@ -40,7 +40,7 @@ def runtests(cross_file, failfast): print('\nTotal passed cross tests:', passing_tests) print('Total failed cross tests:', failing_tests) print('Total skipped cross tests:', skipped_tests) - if failing_tests > 0 and ('TRAVIS' in os.environ or 'APPVEYOR' in os.environ): + if failing_tests > 0 and ('CI' in os.environ): print('\nMesonlogs of failing tests\n') for log in failing_logs: print(log, '\n') |