appveyor.yml (484B)
1 build: false # Not a C# project, build stuff at the test step instead. 2 environment: 3 matrix: 4 - PYTHON: "C:/Python27" 5 - PYTHON: "C:/Python33" 6 - PYTHON: "C:/Python34" 7 8 init: 9 - "ECHO %PYTHON%" 10 - ps: "ls C:/Python*" 11 12 install: 13 - ps: (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py') 14 - "%PYTHON%/python.exe C:/get-pip.py" 15 - "%PYTHON%/Scripts/pip.exe install tox" 16 17 test_script: 18 - "%PYTHON%/Scripts/tox.exe -e py-test"