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

Commit

Permalink
Add option to allow device test skipping
Browse files Browse the repository at this point in the history
  • Loading branch information
Redth committed Feb 20, 2020
1 parent 72447a0 commit 309d95f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions azure-pipelines.yml
Expand Up @@ -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:
Expand Down Expand Up @@ -170,6 +171,7 @@ jobs:

- job: devicetests_ios
displayName: Run iOS Device Tests
condition: and(succeeded(), not(variables['SkipDeviceTests']))
dependsOn:
- build_windows
- build_macos
Expand Down Expand Up @@ -211,6 +213,7 @@ jobs:

- job: devicetests_android
displayName: Run Android Device Tests
condition: and(succeeded(), not(variables['SkipDeviceTests']))
dependsOn:
- build_windows
- build_macos
Expand Down

0 comments on commit 309d95f

Please sign in to comment.