2021-05-19 06:55:37 +03:00
|
|
|
# Copyright (c) Microsoft Corporation.
|
|
|
|
# Licensed under the MIT License.
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- task: AzureCLI@2
|
|
|
|
inputs:
|
2021-11-05 01:35:32 +03:00
|
|
|
azureSubscription: 'Azure IoT Edge Dev Tools - Test'
|
2021-05-19 06:55:37 +03:00
|
|
|
scriptType: 'bash'
|
|
|
|
scriptLocation: 'inlineScript'
|
|
|
|
inlineScript: |
|
|
|
|
cd tests/e2e-tests
|
|
|
|
chmod +x test-devicestate.sh
|
|
|
|
./test-devicestate.sh $(AzureSubscriptionId)
|
|
|
|
displayName: 'Run All E2E Tests'
|