Skip to content

Commit 867f5f2

Browse files
committed
debugging
1 parent efc457a commit 867f5f2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.evergreen/execute-tests.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,16 @@ cd ${REPO_NAME}
1616
MAX_ATTEMPTS=3
1717
ATTEMPT=1
1818
EXIT_CODE=0
19+
set +e
1920

2021
while [ $ATTEMPT -le $MAX_ATTEMPTS ]; do
22+
echo "Running test attempt $ATTEMPT"
2123
bash ${ROOT_DIR}/${DIR}/run.sh
2224

2325
EXIT_CODE=$?
2426

27+
echo "Test attempt $ATTEMPT had exit code $EXIT_CODE"
28+
2529
if [ $EXIT_CODE -eq 0 ]; then
2630
break
2731
else

0 commit comments

Comments
 (0)