Skip to content

Commit

Permalink
move the environment prep above the tooling that needs it (#14246)
Browse files Browse the repository at this point in the history
  • Loading branch information
scbedd authored Oct 5, 2020
1 parent 2549ec0 commit e8cb470
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions eng/pipelines/templates/steps/test_regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ steps:
artifactName: 'artifacts'
targetPath: $(Build.ArtifactStagingDirectory)

- script: |
pip install -r eng/ci_tools.txt
displayName: 'Prep Environment'
- template: ../steps/set-dev-build.yml
parameters:
ServiceDirectory: ${{ parameters.ServiceDirectory }}
Expand All @@ -25,10 +29,6 @@ steps:
parameters:
DevFeedName: ${{ parameters.DevFeedName }}

- script: |
pip install -r eng/ci_tools.txt
displayName: 'Prep Environment'
- task: PythonScript@0
displayName: 'Test Latest Released Dependents'
inputs:
Expand Down

0 comments on commit e8cb470

Please sign in to comment.