We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 641d274 commit bc61974Copy full SHA for bc61974
azure-pipelines.yml
@@ -86,6 +86,15 @@ jobs:
86
condition: eq(variables['python.exe'], 'pypy3')
87
displayName: 'Install pypy3'
88
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
+
98
- script: $(python.exe) -m pip install --upgrade pip && pip install tox
99
displayName: 'Install tox'
100
0 commit comments