diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 3441c9d48..5bb047bde 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -13,6 +13,7 @@ variables: ANDROID_EMU_TARGET: 'system-images;android-26;google_apis;x86' ANDROID_EMU_DEVICE: 'Nexus 5X' RunPoliCheck: 'false' + SkipDeviceTests: 'false' resources: repositories: @@ -170,6 +171,7 @@ jobs: - job: devicetests_ios displayName: Run iOS Device Tests + condition: and(succeeded(), not(variables['SkipDeviceTests'])) dependsOn: - build_windows - build_macos @@ -211,6 +213,7 @@ jobs: - job: devicetests_android displayName: Run Android Device Tests + condition: and(succeeded(), not(variables['SkipDeviceTests'])) dependsOn: - build_windows - build_macos