diff options
-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 |