##// END OF EJS Templates
Bump up Python version on Appveyor too
Thomas Kluyver -
Show More
@@ -1,31 +1,31 b''
1 build: false
1 build: false
2 matrix:
2 matrix:
3 fast_finish: true # immediately finish build once one of the jobs fails.
3 fast_finish: true # immediately finish build once one of the jobs fails.
4
4
5 environment:
5 environment:
6 matrix:
6 matrix:
7 - PYTHON: "C:\\Python36"
7 - PYTHON: "C:\\Python36"
8 PYTHON_VERSION: "3.6.x"
8 PYTHON_VERSION: "3.6.x"
9 PYTHON_ARCH: "32"
9 PYTHON_ARCH: "32"
10
10
11 - PYTHON: "C:\\Python33-x64"
11 - PYTHON: "C:\\Python34-x64"
12 PYTHON_VERSION: "3.3.x"
12 PYTHON_VERSION: "3.4.x"
13 PYTHON_ARCH: "64"
13 PYTHON_ARCH: "64"
14
14
15 - PYTHON: "C:\\Python36-x64"
15 - PYTHON: "C:\\Python36-x64"
16 PYTHON_VERSION: "3.6.x"
16 PYTHON_VERSION: "3.6.x"
17 PYTHON_ARCH: "64"
17 PYTHON_ARCH: "64"
18
18
19 init:
19 init:
20 - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
20 - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
21
21
22 install:
22 install:
23 - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
23 - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
24 - "%CMD_IN_ENV% pip install setuptools>=18.5 --upgrade"
24 - "%CMD_IN_ENV% pip install setuptools>=18.5 --upgrade"
25 - "%CMD_IN_ENV% pip install nose coverage"
25 - "%CMD_IN_ENV% pip install nose coverage"
26 - "%CMD_IN_ENV% pip install .[test]"
26 - "%CMD_IN_ENV% pip install .[test]"
27 - "%CMD_IN_ENV% mkdir results"
27 - "%CMD_IN_ENV% mkdir results"
28 - "%CMD_IN_ENV% cd results"
28 - "%CMD_IN_ENV% cd results"
29 test_script:
29 test_script:
30 - "%CMD_IN_ENV% iptest --coverage xml"
30 - "%CMD_IN_ENV% iptest --coverage xml"
31
31
General Comments 0
You need to be logged in to leave comments. Login now