Skip to content
This repository was archived by the owner on May 15, 2024. It is now read-only.

Commit 309d95f

Browse files
committed
Add option to allow device test skipping
1 parent 72447a0 commit 309d95f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

azure-pipelines.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ variables:
1313
ANDROID_EMU_TARGET: 'system-images;android-26;google_apis;x86'
1414
ANDROID_EMU_DEVICE: 'Nexus 5X'
1515
RunPoliCheck: 'false'
16+
SkipDeviceTests: 'false'
1617

1718
resources:
1819
repositories:
@@ -170,6 +171,7 @@ jobs:
170171

171172
- job: devicetests_ios
172173
displayName: Run iOS Device Tests
174+
condition: and(succeeded(), not(variables['SkipDeviceTests']))
173175
dependsOn:
174176
- build_windows
175177
- build_macos
@@ -211,6 +213,7 @@ jobs:
211213

212214
- job: devicetests_android
213215
displayName: Run Android Device Tests
216+
condition: and(succeeded(), not(variables['SkipDeviceTests']))
214217
dependsOn:
215218
- build_windows
216219
- build_macos

0 commit comments

Comments
 (0)