diff --git a/tests/utils/shippable/shippable.sh b/tests/utils/shippable/shippable.sh index d71167b9c6..8fa4ac4dd3 100755 --- a/tests/utils/shippable/shippable.sh +++ b/tests/utils/shippable/shippable.sh @@ -29,8 +29,10 @@ python -V function retry { for repetition in 1 2 3; do + set +e "$@" result=$? + set -e if [ ${result} == 0 ]; then return ${result} fi