How do I install PyPy on appveyor? -


i have python extension needs compiled against pypy interpreter on windows-based appveyor continuous integration service. how pypy in environment?

add powershell commands "install" phase of build:

(new-object net.webclient).downloadfile('https://bitbucket.org/pypy/pypy/downloads/pypy3-2.4.0-win32.zip', "$env:appveyor_build_folder\pypy3-2.4.0-win32.zip") 7z x pypy3-2.4.0-win32.zip | out-null $env:path = "$env:appveyor_build_folder\pypy3-2.4.0-win32;$env:path" 

then can call pypy.exe anywhere in build.


Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -