| OLD | NEW |
| (Empty) | |
| 1 environment: |
| 2 |
| 3 matrix: |
| 4 # For Python versions available on Appveyor, see |
| 5 # http://www.appveyor.com/docs/installed-software#python |
| 6 |
| 7 - PYTHON: "C:\\Python26" |
| 8 - PYTHON: "C:\\Python27" |
| 9 - PYTHON: "C:\\Python33" |
| 10 - PYTHON: "C:\\Python34" |
| 11 - PYTHON: "C:\\Python35" |
| 12 - PYTHON: "C:\\Python26-x64" |
| 13 - PYTHON: "C:\\Python27-x64" |
| 14 - PYTHON: "C:\\Python33-x64" |
| 15 - PYTHON: "C:\\Python34-x64" |
| 16 - PYTHON: "C:\\Python35-x64" |
| 17 |
| 18 install: |
| 19 # We need tox installed for the tests |
| 20 - "%PYTHON%\\Scripts\\pip.exe install tox" |
| 21 |
| 22 build: off |
| 23 |
| 24 test_script: |
| 25 - "%PYTHON%\\Scripts\\tox.exe -e py" |
| OLD | NEW |