From b8eb79411e71fca16da29ec455669395d24585ae Mon Sep 17 00:00:00 2001 From: Chris Beck Date: Sun, 29 Jun 2014 19:31:32 -0400 Subject: [PATCH] inline a very short travis-related script --- .travis.yml | 3 ++- .../{travis_after_failure.sh => travis_after_failure.sh.old} | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename utils/travis/{travis_after_failure.sh => travis_after_failure.sh.old} (100%) diff --git a/.travis.yml b/.travis.yml index e1f03792c35..32936478b1f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,7 +32,8 @@ script: - if [[ "$CPP_TESTS" = true ]]; then time ./utils/travis/test_wrapper.sh; fi - if [[ "$WML_TESTS" = true ]]; then time ./run_wml_tests -v -t 20; fi after_failure: - - ./utils/travis/travis_after_failure.sh + - if [ -f "errors.log" ]; then echo -e "\n*** \n*\n* Errors reported in wml unit tests, here is errors.log...\n*\n*** \n"; fi + - if [ -f "errors.log" ]; then cat errors.log; fi notifications: email: false irc: diff --git a/utils/travis/travis_after_failure.sh b/utils/travis/travis_after_failure.sh.old similarity index 100% rename from utils/travis/travis_after_failure.sh rename to utils/travis/travis_after_failure.sh.old