diff options
author | Daniel Hahler <git@thequod.de> | 2019-07-02 07:23:24 +0200 |
---|---|---|
committer | Daniel Hahler <git@thequod.de> | 2019-07-03 00:43:22 +0200 |
commit | d42bbf363e829ab4cf5fb20d8a709d3e6e3fdd2b (patch) | |
tree | 6276cda508558a86fa0e0972cc1429f62e08868c | |
parent | 61790c7b3c552213295ffa5288a49601b3ba5a34 (diff) | |
download | rneovim-d42bbf363e829ab4cf5fb20d8a709d3e6e3fdd2b.tar.gz rneovim-d42bbf363e829ab4cf5fb20d8a709d3e6e3fdd2b.tar.bz2 rneovim-d42bbf363e829ab4cf5fb20d8a709d3e6e3fdd2b.zip |
ci: Travis: do not close fold on failure [skip ci]
This makes it easier to inspect the test failure, without having to open
two folds (typically), and scrolling around.
-rw-r--r-- | ci/common/suite.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ci/common/suite.sh b/ci/common/suite.sh index 8feb642547..4c42f06c60 100644 --- a/ci/common/suite.sh +++ b/ci/common/suite.sh @@ -39,10 +39,11 @@ enter_suite() { exit_suite() { set +x - travis_fold end "${NVIM_TEST_CURRENT_SUITE}" if test $FAILED -ne 0 ; then echo "Suite ${NVIM_TEST_CURRENT_SUITE} failed, summary:" echo "${FAIL_SUMMARY}" + else + travis_fold end "${NVIM_TEST_CURRENT_SUITE}" fi export NVIM_TEST_CURRENT_SUITE="${NVIM_TEST_CURRENT_SUITE%/*}" if test "$1" != "--continue" ; then |