From aff4e684e1f13d7da4248d17c0b8b2adf2e37033 Mon Sep 17 00:00:00 2001 From: Martin Babinsky Date: Tue, 20 Dec 2016 16:01:00 +0100 Subject: [PATCH] Put the commands informing and displaying build logs on single line This prevents Travis log collector to add separate expansion marks to the echo output and the actuall log output. Reviewed-By: Stanislav Laznicka Reviewed-By: Fraser Tweedale --- .travis.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2855bf2b8..28f481fdb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,7 +39,5 @@ script: --git-repo ${TRAVIS_BUILD_DIR} run-tests $test_set after_failure: - - echo "Test runner output:" - - tail -n 5000 ci_results_${TRAVIS_BRANCH}.log - - echo "PEP-8 errors:" - - cat pep8_errors.log + - echo "Test runner output:"; tail -n 5000 ci_results_${TRAVIS_BRANCH}.log + - echo "PEP-8 errors:"; cat pep8_errors.log