diff --git a/.travis.yml b/.travis.yml index 022462f698..875671325c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -103,7 +103,12 @@ script: else $(exit $BUILD_RC); fi - - if [ "$BUILD_RC" -eq 0 ] ; then travis_retry ${TEST_CMD} ; else $(exit $BUILD_RC); fi + - | + if [ "$BUILD_RC" -eq 0 ] ; then + ${TEST_CMD} ; + else + $(exit $BUILD_RC); + fi after_script: - if command -v ccache ; then ccache --show-stats ; fi