Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tools/pipelines/templates/include-test-real-service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ stages:
set -eu -o pipefail

# Increase the maximum time to wait for a tenant to 1 hour to accommodate multiple test runs at the same time.
pnpm exec trips-setup -- --waitTime=3600 --accessToken=$SYSTEM_ACCESSTOKEN
pnpm exec trips-setup --waitTime=3600 --accessToken=$SYSTEM_ACCESSTOKEN
echo "##vso[task.setvariable variable=tenantSetupSuccess;]true"

# run the test
Expand Down Expand Up @@ -455,7 +455,7 @@ stages:
targetType: 'inline'
script: |
set -eu -o pipefail
pnpm exec trips-cleanup -- --reservationId=$(stringBearerToken)
pnpm exec trips-cleanup --reservationId=$(stringBearerToken)
condition: eq(variables['tenantSetupSuccess'], 'true')

# Log Test Failures
Expand Down
4 changes: 2 additions & 2 deletions tools/pipelines/templates/include-upload-stage-telemetry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ stages:
echo "Listing files in '$WORK_FOLDER'"
ls -laR $WORK_FOLDER;

pnpm exec telemetry-generator -- --handlerModule "$(pathToTelemetryGeneratorHandlersNew)/stageTimingRetriever.js" --dir "$WORK_FOLDER";
pnpm exec telemetry-generator --handlerModule "$(pathToTelemetryGeneratorHandlersNew)/stageTimingRetriever.js" --dir "$WORK_FOLDER";

- ${{ if parameters.uploadTestPassRateTelemetry }}:
- task: Bash@3
Expand Down Expand Up @@ -124,4 +124,4 @@ stages:
echo "Listing files in '$WORK_FOLDER'"
ls -laR $WORK_FOLDER;

pnpm exec telemetry-generator -- --handlerModule "$(pathToTelemetryGeneratorHandlersNew)/testPassRate.js" --dir "$WORK_FOLDER"
pnpm exec telemetry-generator --handlerModule "$(pathToTelemetryGeneratorHandlersNew)/testPassRate.js" --dir "$WORK_FOLDER"