diff options
| author | Martin Babinsky <mbabinsk@redhat.com> | 2016-12-20 16:01:00 +0100 |
|---|---|---|
| committer | Martin Babinsky <mbabinsk@redhat.com> | 2017-01-05 16:21:51 +0100 |
| commit | aff4e684e1f13d7da4248d17c0b8b2adf2e37033 (patch) | |
| tree | a83f641d5d53b3b7edec43e1d559c5974d772906 | |
| parent | 758731088eee0294af59812dbd1976db89b9dda0 (diff) | |
| download | freeipa-aff4e684e1f13d7da4248d17c0b8b2adf2e37033.tar.gz freeipa-aff4e684e1f13d7da4248d17c0b8b2adf2e37033.tar.xz freeipa-aff4e684e1f13d7da4248d17c0b8b2adf2e37033.zip | |
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 <slaznick@redhat.com>
Reviewed-By: Fraser Tweedale <ftweedal@redhat.com>
| -rw-r--r-- | .travis.yml | 6 |
1 files 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 |
