Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions test/functional-portable/corerp/cloud/resources/aci_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,16 @@ import (
)

func Test_ACI(t *testing.T) {
// Disabled: this test dominates the corerp-cloud functional leg's wall-clock
// time. It provisions real Azure Container Instances (plus a VNet/NSG/ILB) and
// is wrapped in a 2x retry with 60s backoff to tolerate the subscription-shared
// 'StandardCores' ACI quota (ContainerGroupQuotaReached). When the quota is
// exhausted by concurrent CI runs the deploy is retried end-to-end, so a single
// run can take ~11-12 minutes (vs <1 minute for every other test in the leg) and
// roughly doubles the cloud workflow's total time. Re-enable once the ACI tests
// are isolated onto their own quota-aware lane. See #12044 and #12163.
t.Skip("Test_ACI is temporarily disabled: real ACI provisioning + quota retries dominate corerp-cloud CI time. See #12044, #12163.")

name := "aci-app"
containerResourceName := "frontend"
containerResourceName2 := "magpie"
Expand Down
Loading