Skip to content

Commit bc61974

Browse files
committed
Install pip for pypy [skip appveyor] [skip travis]
1 parent 641d274 commit bc61974

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

azure-pipelines.yml

+9
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,15 @@ jobs:
8686
condition: eq(variables['python.exe'], 'pypy3')
8787
displayName: 'Install pypy3'
8888

89+
- task: PowerShell@2
90+
inputs:
91+
targetType: 'inline'
92+
script: |
93+
Invoke-WebRequest -Uri "https://bootstrap.pypa.io/get-pip.py" -OutFile "get-pip.py"
94+
$(python.exe) get-pip.py
95+
condition: startsWith(variables['python.exe'], 'pypy')
96+
displayName: 'Install pip'
97+
8998
- script: $(python.exe) -m pip install --upgrade pip && pip install tox
9099
displayName: 'Install tox'
91100

0 commit comments

Comments
 (0)