From b6f74f07004c2af43b2616e829330d9f27999463 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Mon, 27 Sep 2021 11:32:26 -0700 Subject: [PATCH] Use stress-test-resources file naming to avoid live test auto-discovery (#1041) Co-authored-by: Ben Broderick Phillips --- eng/common/scripts/stress-testing/deploy-stress-tests.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/common/scripts/stress-testing/deploy-stress-tests.ps1 b/eng/common/scripts/stress-testing/deploy-stress-tests.ps1 index 39650a602..76eff6a31 100644 --- a/eng/common/scripts/stress-testing/deploy-stress-tests.ps1 +++ b/eng/common/scripts/stress-testing/deploy-stress-tests.ps1 @@ -121,8 +121,8 @@ function DeployStressPackage( Run helm dependency update $pkg.Directory if ($LASTEXITCODE) { return } - if (Test-Path "$($pkg.Directory)/test-resources.bicep") { - Run az bicep build -f "$($pkg.Directory)/test-resources.bicep" + if (Test-Path "$($pkg.Directory)/stress-test-resources.bicep") { + Run az bicep build -f "$($pkg.Directory)/stress-test-resources.bicep" if ($LASTEXITCODE) { return } }