Skip to content

Commit b731d56

Browse files
yogeshmoYogesh Mohanraj
andauthored
Adding PPE Only Parameter to Email Live Tests (Azure#35052)
Co-authored-by: Yogesh Mohanraj <[email protected]>
1 parent 2cce308 commit b731d56

File tree

1 file changed

+10
-1
lines changed
  • sdk/communication/Azure.Communication.Email

1 file changed

+10
-1
lines changed

sdk/communication/Azure.Communication.Email/tests.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
trigger: none
22

3+
parameters:
4+
- name: runOnlyPPE
5+
displayName: "Run only the PPE stage"
6+
type: boolean
7+
default: false
8+
39
extends:
410
template: /eng/pipelines/templates/stages/archetype-sdk-tests.yml
511
parameters:
@@ -19,6 +25,9 @@ extends:
1925
SubscriptionConfigurations:
2026
- $(sub-config-communication-ppe-test-resources-common)
2127
- $(sub-config-communication-ppe-test-resources-net)
22-
Clouds: 'Public,PPE,Int'
28+
${{ if eq(parameters.runOnlyPPE, true) }}:
29+
Clouds: PPE
30+
${{ if eq(parameters.runOnlyPPE, false) }}:
31+
Clouds: Public,PPE,Int
2332
TestResourceDirectories:
2433
- communication/Azure.Communication.Email/

0 commit comments

Comments
 (0)