1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
trigger: none
extends:
template: /eng/pipelines/templates/stages/archetype-sdk-tests.yml
parameters:
ServiceDirectory: translation
TestTimeoutInMinutes: 200
Clouds: Public # Skipping INT, re-enable when environment fixed
CloudConfig:
Public:
Location: 'westus3'
Int:
# We run tests in Dogfood for the service team. This cloud config is just used to validate the service deployment
# so we don't need to run on every version of Python.
SubscriptionConfiguration: $(sub-config-translation-int-test-resources)
MatrixFilters:
- PythonVersion=3.11.*
EnvVars:
AZURE_TEST_RUN_LIVE: 'true'
TEST_MODE: 'RunLiveNoRecord'
AZURE_SKIP_LIVE_RECORDING: 'True'
|