| build: false # Not a C# project, build stuff at the test step instead. |
| environment: |
| matrix: |
| - PYTHON: "C:/Python27" |
| - PYTHON: "C:/Python27-x64" |
| - PYTHON: "C:/Python34" |
| - PYTHON: "C:/Python34-x64" |
| - PYTHON: "C:/Python35" |
| - PYTHON: "C:/Python35-x64" |
| - PYTHON: "C:/Python36" |
| - PYTHON: "C:/Python36-x64" |
| - PYTHON: "C:/Python37" |
| - PYTHON: "C:/Python37-x64" |
| - PYTHON: "C:/Python38" |
| - PYTHON: "C:/Python38-x64" |
| |
| init: |
| - "ECHO %PYTHON%" |
| - ps: "ls C:/Python*" |
| |
| install: |
| - ps: (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py') |
| - "%PYTHON%/python.exe C:/get-pip.py" |
| - "%PYTHON%/Scripts/pip.exe install tox" |
| |
| test_script: |
| - "%PYTHON%/Scripts/tox.exe -e py-test" |