From 309d95ffe9b075d350e2a676490e2b489ec6098e Mon Sep 17 00:00:00 2001 From: Jonathan Dick Date: Thu, 20 Feb 2020 16:01:57 -0500 Subject: [PATCH] Add option to allow device test skipping --- azure-pipelines.yml | 3 +++ 1 file changed, 3 insertions(+) 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