Skip to content

Commit ded8625

Browse files
committed
Cleanup
1 parent 867f5f2 commit ded8625

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.evergreen/execute-tests.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,14 @@ EXIT_CODE=0
1919
set +e
2020

2121
while [ $ATTEMPT -le $MAX_ATTEMPTS ]; do
22-
echo "Running test attempt $ATTEMPT"
2322
bash ${ROOT_DIR}/${DIR}/run.sh
2423

2524
EXIT_CODE=$?
2625

27-
echo "Test attempt $ATTEMPT had exit code $EXIT_CODE"
28-
2926
if [ $EXIT_CODE -eq 0 ]; then
3027
break
3128
else
32-
echo "Tests failed with exit code $EXIT_CODE on attempt $ATTEMPT of $MAX_ATTEMPTS..."
29+
echo "Tests failed on attempt $ATTEMPT of $MAX_ATTEMPTS..."
3330
((ATTEMPT++))
3431
fi
3532
done

0 commit comments

Comments
 (0)