1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
trigger: none
stages:
- template: /eng/pipelines/templates/stages/archetype-sdk-tests.yml
parameters:
BuildTargetingString: azure-ai-formrecognizer
ServiceDirectory: formrecognizer
TestTimeoutInMinutes: 200
MatrixReplace:
- TestSamples=.*/true
Clouds: 'Prod,Canary'
# This is a specific request from the formrecognizer service team
# their claim is that the full matrix ends up stress-testing their service.
# As such, the canary test runs should run on a reduced matrix.
CloudConfig:
Prod:
SubscriptionConfiguration: $(sub-config-azure-cloud-test-resources)
Location: $(LOCATION)
Canary:
SubscriptionConfiguration: $(sub-config-azure-cloud-test-resources)
Location: 'centraluseuap'
MatrixFilters:
- OSVmImage=^(?!macOS).*
- PythonVersion=^(?!pypy3).*
EnvVars:
AZURE_SUBSCRIPTION_ID: $(provisioner-subscription)
AZURE_TENANT_ID: $(aad-azure-sdk-test-tenant-id)
AZURE_CLIENT_SECRET: $(aad-azure-sdk-test-client-secret)
AZURE_CLIENT_ID: $(aad-azure-sdk-test-client-id)
TEST_MODE: 'RunLiveNoRecord'
AZURE_SKIP_LIVE_RECORDING: 'True'
AZURE_TEST_RUN_LIVE: 'true'
|