Skip to content

Commit a98a0f7

Browse files
authored
Ensure that oneES python install on windows won't affect java repo (Azure#34064)
1 parent b6b9000 commit a98a0f7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

eng/pipelines/templates/jobs/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ jobs:
155155
condition: and(succeeded(), eq(variables['SetDevVersion'],'true'))
156156

157157
- script: |
158-
pip install markdown2==2.4.6 BeautifulSoup4==4.11.1
158+
python -m pip install markdown2==2.4.6 BeautifulSoup4==4.11.1
159159
displayName: 'pip install markdown2 and BeautifulSoup4'
160160
161161
- task: Maven@3

eng/pipelines/templates/stages/archetype-sdk-client-patch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ stages:
9999
SkipCheckoutNone: true
100100

101101
- script: |
102-
pip install markdown2 BeautifulSoup4
102+
python -m pip install markdown2 BeautifulSoup4
103103
displayName: 'pip install markdown2 and BeautifulSoup4'
104104
105105
# Save the Package Properties

sdk/spring/compatibility-tests-job.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- 'sdk/parents/azure-client-sdk-parent'
2323
- 'sdk/jdbc'
2424
- script: |
25-
pip install termcolor
25+
python -m pip install termcolor
2626
displayName: 'Python module install'
2727
- bash: |
2828
echo "##vso[task.setVariable variable=SPRING_CLOUD_AZURE_TEST_SUPPORTED_SPRING_CLOUD_VERSION]$(python ./sdk/spring/scripts/compatibility_get_spring_cloud_version.py -b $(SPRING_CLOUD_AZURE_TEST_SUPPORTED_SPRING_BOOT_VERSION))"

sdk/spring/compatibility-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ stages:
2222
GenerateVMJobs: true
2323
PreGenerationSteps:
2424
- script: |
25-
pip install termcolor
25+
python -m pip install termcolor
2626
displayName: 'python module install'
2727
- script: |
2828
python ./sdk/spring/scripts/compatibility_update_supported_version_matrix_json.py

0 commit comments

Comments
 (0)