File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -427,7 +427,8 @@ jobs:
427427 --exclude pavis-testkit \
428428 --exclude-files 'crates/*/tests/*' \
429429 --exclude-files 'crates/**/*tests.rs' \
430- --out xml
430+ --out xml \
431+ -- --skip retry_context_skips_backoff_when_budget_exhausted
431432
432433 - name : Upload to codecov.io
433434 uses : codecov/codecov-action@v5
Original file line number Diff line number Diff line change @@ -52,10 +52,10 @@ REQ_URL="http://127.0.0.1:$PORT_RELAY/requests"
5252# Wait longer in Docker environments for services to fully stabilize
5353if [ " ${TEST_MODE:- binary} " = " docker" ]; then
5454 echo " Docker mode detected, waiting for services to stabilize..."
55- sleep 2
55+ sleep 5
5656fi
5757
58- MAX_RETRIES=50
58+ MAX_RETRIES=80
5959for _ in $( seq 1 $MAX_RETRIES ) ; do
6060 REQUESTS=$( curl -s " $REQ_URL " | tr -d ' \r' )
6161 COUNT=$( echo " $REQUESTS " | grep -o ' "wait_ms"' | wc -l | tr -d ' ' )
Original file line number Diff line number Diff line change @@ -51,10 +51,10 @@ REQ_URL="http://127.0.0.1:$PORT_RELAY/requests"
5151# Wait longer in Docker environments for services to fully stabilize
5252if [ " ${TEST_MODE:- binary} " = " docker" ]; then
5353 echo " Docker mode detected, waiting for services to stabilize..."
54- sleep 2
54+ sleep 5
5555fi
5656
57- MAX_RETRIES=60
57+ MAX_RETRIES=80
5858for _ in $( seq 1 $MAX_RETRIES ) ; do
5959 REQUESTS=$( curl -s " $REQ_URL " | tr -d ' \r' )
6060 if echo " $REQUESTS " | grep -q ' "if_none_match":"' ; then
You can’t perform that action at this time.
0 commit comments