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.
This commit is contained in:
Daniel Hahler 2019-07-02 07:23:24 +02:00
parent 61790c7b3c
commit d42bbf363e
1 changed files with 2 additions and 1 deletions

View File

@ -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