|
2 | 2 | # Windows |
3 | 3 |
|
4 | 4 | environment: |
5 | | - global: |
6 | | - # SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the |
7 | | - # /E:ON and /V:ON options are not enabled in the batch script intepreter |
8 | | - # See: https://stackoverflow.com/a/13751649/163740 |
9 | | - CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\ci\\appveyor\\run_with_env.cmd" |
10 | | - |
11 | 5 | matrix: |
12 | | - - PYTHON: "C:\\Python27_32" |
13 | | - PYTHON_VERSION: "2.7" |
14 | | - PYTHON_ARCH: "32" |
15 | | - |
16 | | - - PYTHON: "C:\\Python27_64" |
17 | | - PYTHON_VERSION: "2.7" |
18 | | - PYTHON_ARCH: "64" |
19 | | - |
20 | | - - PYTHON: "C:\\Python34_32" |
21 | | - PYTHON_VERSION: "3.4.3" |
22 | | - PYTHON_ARCH: "32" |
23 | | - |
24 | | - - PYTHON: "C:\\Python34_64" |
25 | | - PYTHON_VERSION: "3.4.3" |
26 | | - PYTHON_ARCH: "64" |
27 | | - |
| 6 | + - PYTHON: "C:\\Python27" |
| 7 | + - PYTHON: "C:\\Python27-x64" |
| 8 | + - PYTHON: "C:\\Python34" |
| 9 | + - PYTHON: "C:\\Python34-x64" |
28 | 10 | - PYTHON: "C:\\Python35" |
29 | | - PYTHON_VERSION: "3.5.0" |
30 | | - PYTHON_ARCH: "32" |
31 | | - |
32 | 11 | - PYTHON: "C:\\Python35-x64" |
33 | | - PYTHON_VERSION: "3.5.0" |
34 | | - PYTHON_ARCH: "64" |
| 12 | + - PYTHON: "C:\\Python36" |
| 13 | + - PYTHON: "C:\\Python36-x64" |
35 | 14 |
|
36 | 15 | install: |
37 | | - # Install Python (from the official .msi of https://python.org) and pip when |
38 | | - # not already installed. |
39 | | - - "powershell ./ci/appveyor/install.ps1" |
40 | 16 | - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" |
41 | 17 |
|
42 | 18 | # Check that we have the expected version and architecture for Python |
43 | 19 | - "python --version" |
44 | 20 | - "python -c \"import struct; print(struct.calcsize('P') * 8)\"" |
45 | 21 |
|
46 | 22 | # Install the build and runtime dependencies of the project. |
47 | | - - "%CMD_IN_ENV% pip install -v six nose pytest pytest-cov coverage" |
| 23 | + - "pip install -v six nose pytest pytest-cov coverage" |
48 | 24 |
|
49 | 25 | # Install the generated wheel package to test it |
50 | 26 | - "python setup.py install" |
|
0 commit comments