diff --git a/tools/pipelines/templates/include-test-real-service.yml b/tools/pipelines/templates/include-test-real-service.yml index 37585f4fb805..9fbf481aed15 100644 --- a/tools/pipelines/templates/include-test-real-service.yml +++ b/tools/pipelines/templates/include-test-real-service.yml @@ -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 @@ -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 diff --git a/tools/pipelines/templates/include-upload-stage-telemetry.yml b/tools/pipelines/templates/include-upload-stage-telemetry.yml index 348a17b5ba1e..d9f6cef1a4d4 100644 --- a/tools/pipelines/templates/include-upload-stage-telemetry.yml +++ b/tools/pipelines/templates/include-upload-stage-telemetry.yml @@ -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 @@ -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"