Skip to content

Commit 3c4ec8f

Browse files
Limit ARM retries to operator tests (#19343)
Jobs been timing out since the first attempt
1 parent 3a4c3a1 commit 3c4ec8f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.ci/scripts/test_backend.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,9 @@ if [[ "$FLOW" == *vulkan* ]]; then
5858
fi
5959

6060
if [[ "$FLOW" == *arm* ]]; then
61-
PYTEST_RETRY_ARGS=(--reruns 2 --reruns-delay 1)
61+
if [[ "$SUITE" == "operators" ]]; then
62+
PYTEST_RETRY_ARGS=(--reruns 2 --reruns-delay 1)
63+
fi
6264

6365
# Setup ARM deps.
6466
if [[ "$FLOW" == *vgf* ]]; then

0 commit comments

Comments
 (0)