From 2090a2cac7b3535c179b8c89c1e1e4ad332eb6cd Mon Sep 17 00:00:00 2001 From: Ben Broderick Phillips Date: Fri, 24 Sep 2021 14:27:52 -0400 Subject: [PATCH] Use stress-test-resources file naming to avoid live test auto-discovery --- 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 80c6471a1199..9ade72bfc139 100644 --- a/eng/common/scripts/stress-testing/deploy-stress-tests.ps1 +++ b/eng/common/scripts/stress-testing/deploy-stress-tests.ps1 @@ -120,8 +120,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 } }