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