Skip to content

Commit

Permalink
update live test samples invocation (#36598)
Browse files Browse the repository at this point in the history
  • Loading branch information
scbedd authored Jul 24, 2024
1 parent 2bce0a6 commit cf6238a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions eng/pipelines/templates/steps/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ steps:
azurePowerShellVersion: LatestVersion
pwsh: true
ScriptType: InlineScript
Inline: >-
Inline: |
$account = (Get-AzContext).Account;
$env:AZURESUBSCRIPTION_CLIENT_ID = $account.Id;
$env:AZURESUBSCRIPTION_TENANT_ID = $account.Tenants;
Expand All @@ -179,10 +179,10 @@ steps:
}
Write-Host (Get-Command python).Source
scripts/devops_tasks/dispatch_tox.py
"$(TargetingString)"
--service="${{ parameters.ServiceDirectory }}"
--toxenv="samples";
python scripts/devops_tasks/dispatch_tox.py "$(TargetingString)" `
--service="${{ parameters.ServiceDirectory }}" `
--toxenv="samples"
Write-Host "Last exit code: $LASTEXITCODE";
exit $LASTEXITCODE;
- ${{ else }}:
Expand Down

0 comments on commit cf6238a

Please sign in to comment.