From 10ddf6cf97835ccdc0b216e9119d46226abe849b Mon Sep 17 00:00:00 2001 From: scbedd <45376673+scbedd@users.noreply.github.com> Date: Mon, 5 Oct 2020 10:49:24 -0700 Subject: [PATCH] move the environment prep above the tooling that needs it --- eng/pipelines/templates/steps/test_regression.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/eng/pipelines/templates/steps/test_regression.yml b/eng/pipelines/templates/steps/test_regression.yml index 1fba92c816f4..23b8ad2c9360 100644 --- a/eng/pipelines/templates/steps/test_regression.yml +++ b/eng/pipelines/templates/steps/test_regression.yml @@ -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 }} @@ -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: