We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48a75c2 commit c146736Copy full SHA for c146736
eng/pipelines/templates/jobs/regression.yml
@@ -63,6 +63,8 @@ jobs:
63
- template: ../variables/globals.yml
64
- name: PROXY_URL
65
value: "http://localhost:5000"
66
+ - name: TEST_PROXY_FOLDER
67
+ value: $(Build.SourcesDirectory)/../.tmp_code_path/azure-sdk-for-python
68
69
# Please use `$(TargetingString)` to refer to the python packages glob string. This was previously `${{ parameters.BuildTargetingString }}`.
70
steps:
@@ -80,7 +82,8 @@ jobs:
80
82
artifactName: 'packages'
81
83
targetPath: $(Build.ArtifactStagingDirectory)
84
- - script: |
85
+ - pwsh: |
86
+ mkdir -p $(TEST_PROXY_FOLDER)
87
pip install -r eng/regression_tools.txt
88
displayName: 'Prep Environment'
89
0 commit comments