##// END OF EJS Templates
add fail fast
Srinivas Reddy Thatiparthy -
Show More
@@ -1,49 +1,51 b''
1 build: false
1 build: false
2 matrix:
3 fast_finish: true # immediately finish build once one of the jobs fails.
2
4
3 environment:
5 environment:
4 matrix:
6 matrix:
5 - PYTHON: "C:\\Python33"
7 - PYTHON: "C:\\Python33"
6 PYTHON_VERSION: "3.3.x"
8 PYTHON_VERSION: "3.3.x"
7 PYTHON_ARCH: "32"
9 PYTHON_ARCH: "32"
8
10
9 - PYTHON: "C:\\Python34"
11 - PYTHON: "C:\\Python34"
10 PYTHON_VERSION: "3.4.x"
12 PYTHON_VERSION: "3.4.x"
11 PYTHON_ARCH: "32"
13 PYTHON_ARCH: "32"
12
14
13 - PYTHON: "C:\\Python35"
15 - PYTHON: "C:\\Python35"
14 PYTHON_VERSION: "3.5.x"
16 PYTHON_VERSION: "3.5.x"
15 PYTHON_ARCH: "32"
17 PYTHON_ARCH: "32"
16
18
17 - PYTHON: "C:\\Python36"
19 - PYTHON: "C:\\Python36"
18 PYTHON_VERSION: "3.6.x"
20 PYTHON_VERSION: "3.6.x"
19 PYTHON_ARCH: "32"
21 PYTHON_ARCH: "32"
20
22
21 - PYTHON: "C:\\Python33-x64"
23 - PYTHON: "C:\\Python33-x64"
22 PYTHON_VERSION: "3.3.x"
24 PYTHON_VERSION: "3.3.x"
23 PYTHON_ARCH: "64"
25 PYTHON_ARCH: "64"
24
26
25 - PYTHON: "C:\\Python34-x64"
27 - PYTHON: "C:\\Python34-x64"
26 PYTHON_VERSION: "3.4.x"
28 PYTHON_VERSION: "3.4.x"
27 PYTHON_ARCH: "64"
29 PYTHON_ARCH: "64"
28
30
29 - PYTHON: "C:\\Python35-x64"
31 - PYTHON: "C:\\Python35-x64"
30 PYTHON_VERSION: "3.5.x"
32 PYTHON_VERSION: "3.5.x"
31 PYTHON_ARCH: "64"
33 PYTHON_ARCH: "64"
32
34
33 - PYTHON: "C:\\Python36-x64"
35 - PYTHON: "C:\\Python36-x64"
34 PYTHON_VERSION: "3.6.x"
36 PYTHON_VERSION: "3.6.x"
35 PYTHON_ARCH: "64"
37 PYTHON_ARCH: "64"
36
38
37 init:
39 init:
38 - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
40 - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
39
41
40 install:
42 install:
41 - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
43 - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
42 - "%CMD_IN_ENV% pip install setuptools>=18.5 --upgrade"
44 - "%CMD_IN_ENV% pip install setuptools>=18.5 --upgrade"
43 - "%CMD_IN_ENV% pip install nose coverage"
45 - "%CMD_IN_ENV% pip install nose coverage"
44 - "%CMD_IN_ENV% pip install .[test]"
46 - "%CMD_IN_ENV% pip install .[test]"
45 - "%CMD_IN_ENV% mkdir results"
47 - "%CMD_IN_ENV% mkdir results"
46 - "%CMD_IN_ENV% cd results"
48 - "%CMD_IN_ENV% cd results"
47 test_script:
49 test_script:
48 - "%CMD_IN_ENV% iptest --coverage xml"
50 - "%CMD_IN_ENV% iptest --coverage xml"
49
51
General Comments 0
You need to be logged in to leave comments. Login now