From 738c80f8c6912cdac5ff0c4ce1494465443ff6e7 Mon Sep 17 00:00:00 2001 From: sulixu <24964493+sulixu@users.noreply.github.com> Date: Mon, 17 Aug 2026 16:27:19 -0700 Subject: [PATCH 1/2] SkuNotAvailable/quota errors will fail tests --- .pipelines/e2e-gpu.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pipelines/e2e-gpu.yaml b/.pipelines/e2e-gpu.yaml index 403e6298264..8d3b5a985a3 100644 --- a/.pipelines/e2e-gpu.yaml +++ b/.pipelines/e2e-gpu.yaml @@ -3,7 +3,7 @@ variables: TAGS_TO_RUN: "gpu=true" TAGS_TO_SKIP: "os=windows,os=azurelinux,os=azurecontainerlinux" SKIP_E2E_TESTS: false - SKIP_TESTS_WITH_SKU_CAPACITY_ISSUE: true + SKIP_TESTS_WITH_SKU_CAPACITY_ISSUE: false E2E_GO_TEST_TIMEOUT: "75m" E2E_FAILED_TESTS_RETRY_COUNT: 2 DISABLE_SCRIPTLESS_COMPILATION: true From 3271c754b3af2f005e1b6f39991f2d07f2f2b94d Mon Sep 17 00:00:00 2001 From: sulixu <24964493+sulixu@users.noreply.github.com> Date: Tue, 18 Aug 2026 11:48:35 -0700 Subject: [PATCH 2/2] test(e2e): skip GPU capacity failures on PRs --- .pipelines/e2e-gpu.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.pipelines/e2e-gpu.yaml b/.pipelines/e2e-gpu.yaml index 8d3b5a985a3..6c7e3e39ac5 100644 --- a/.pipelines/e2e-gpu.yaml +++ b/.pipelines/e2e-gpu.yaml @@ -3,7 +3,8 @@ variables: TAGS_TO_RUN: "gpu=true" TAGS_TO_SKIP: "os=windows,os=azurelinux,os=azurecontainerlinux" SKIP_E2E_TESTS: false - SKIP_TESTS_WITH_SKU_CAPACITY_ISSUE: false + # PRs skip quota/capacity-constrained scenarios; main and scheduled runs fail them. + SKIP_TESTS_WITH_SKU_CAPACITY_ISSUE: $[eq(variables['Build.Reason'], 'PullRequest')] E2E_GO_TEST_TIMEOUT: "75m" E2E_FAILED_TESTS_RETRY_COUNT: 2 DISABLE_SCRIPTLESS_COMPILATION: true