##// END OF EJS Templates
Cut more appveyor tests....
Matthias Bussonnier -
Show More
@@ -1,39 +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:\\Python33-x64"
12 PYTHON_VERSION: "3.3.x"
12 PYTHON_VERSION: "3.3.x"
13 PYTHON_ARCH: "64"
13 PYTHON_ARCH: "64"
14
14
15 - PYTHON: "C:\\Python34-x64"
16 PYTHON_VERSION: "3.4.x"
17 PYTHON_ARCH: "64"
18
19 - PYTHON: "C:\\Python35-x64"
20 PYTHON_VERSION: "3.5.x"
21 PYTHON_ARCH: "64"
22
23 - PYTHON: "C:\\Python36-x64"
15 - PYTHON: "C:\\Python36-x64"
24 PYTHON_VERSION: "3.6.x"
16 PYTHON_VERSION: "3.6.x"
25 PYTHON_ARCH: "64"
17 PYTHON_ARCH: "64"
26
18
27 init:
19 init:
28 - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
20 - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
29
21
30 install:
22 install:
31 - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
23 - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
32 - "%CMD_IN_ENV% pip install setuptools>=18.5 --upgrade"
24 - "%CMD_IN_ENV% pip install setuptools>=18.5 --upgrade"
33 - "%CMD_IN_ENV% pip install nose coverage"
25 - "%CMD_IN_ENV% pip install nose coverage"
34 - "%CMD_IN_ENV% pip install .[test]"
26 - "%CMD_IN_ENV% pip install .[test]"
35 - "%CMD_IN_ENV% mkdir results"
27 - "%CMD_IN_ENV% mkdir results"
36 - "%CMD_IN_ENV% cd results"
28 - "%CMD_IN_ENV% cd results"
37 test_script:
29 test_script:
38 - "%CMD_IN_ENV% iptest --coverage xml"
30 - "%CMD_IN_ENV% iptest --coverage xml"
39
31
General Comments 0
You need to be logged in to leave comments. Login now