diff options
author | John Newbery <john@johnnewbery.com> | 2017-03-28 08:47:18 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2017-03-28 08:47:18 -0400 |
commit | 91f1f19674e9cc8a0a34df73484ffcefd6227798 (patch) | |
tree | 931041a5d3e7a42413c1f8b4eb0f1862939964fa | |
parent | 79af9fbd8c3c0e54702a9c92b171f134bd4466c8 (diff) |
Make all Travis test runs quiet, non just cron job runs
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index eec70963b4..d8395255bc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -70,8 +70,8 @@ script: - make $MAKEJOBS $GOAL || ( echo "Build failure. Verbose build follows." && make $GOAL V=1 ; false ) - export LD_LIBRARY_PATH=$TRAVIS_BUILD_DIR/depends/$HOST/lib - if [ "$RUN_TESTS" = "true" ]; then make $MAKEJOBS check VERBOSE=1; fi - - if [ "$TRAVIS_EVENT_TYPE" = "cron" ]; then extended="--extended --quiet --exclude pruning"; fi - - if [ "$RUN_TESTS" = "true" ]; then test/functional/test_runner.py --coverage ${extended}; fi + - if [ "$TRAVIS_EVENT_TYPE" = "cron" ]; then extended="--extended --exclude pruning"; fi + - if [ "$RUN_TESTS" = "true" ]; then test/functional/test_runner.py --coverage --quiet ${extended}; fi after_script: - echo $TRAVIS_COMMIT_RANGE - echo $TRAVIS_COMMIT_LOG |