@@ -43,10 +43,10 @@ jobs:
43
43
# But no exception with py27-pexpect,py27-twisted,py27-numpy.
44
44
PYTEST_COVERAGE : ' 1'
45
45
pypy :
46
- python.version : ' pypy '
46
+ python.version : ' pypy2 '
47
47
tox.env : ' pypy'
48
48
python.exe : ' pypy'
49
- # NOTE: pypy3 fails to install pip currently due to an interal error.
49
+ # NOTE: pypy3 fails to install pip currently due to an internal error.
50
50
# pypy3:
51
51
# python.version: 'pypy3'
52
52
# tox.env: 'pypy3'
86
86
87
87
steps :
88
88
- task : UsePythonVersion@0
89
- condition : not(startsWith(variables['python.exe'], 'pypy'))
90
89
inputs :
91
90
versionSpec : ' $(python.version)'
92
91
architecture : ' x64'
95
94
condition : eq(variables['python.needs_vc'], True)
96
95
displayName : ' Install VC for py27'
97
96
98
- - script : choco install python.pypy
99
- condition : eq(variables['python.exe'], 'pypy')
100
- displayName : ' Install pypy'
101
-
102
- - script : choco install pypy3
103
- condition : eq(variables['python.exe'], 'pypy3')
104
- displayName : ' Install pypy3'
105
-
106
- - task : PowerShell@2
107
- inputs :
108
- targetType : ' inline'
109
- script : |
110
- Invoke-WebRequest -Uri "https://bootstrap.pypa.io/get-pip.py" -OutFile "get-pip.py"
111
- $(python.exe) get-pip.py
112
- condition : startsWith(variables['python.exe'], 'pypy')
113
- displayName : ' Install pip'
114
-
115
97
- script : $(python.exe) -m pip install --upgrade pip && $(python.exe) -m pip install tox
116
98
displayName : ' Install tox'
117
99
0 commit comments