##// END OF EJS Templates
Merge pull request #12032 from Carreau/noappvey...
Matthias Bussonnier -
r25351:b7855422 merge
parent child Browse files
Show More
@@ -1,42 +1,38 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:\\Python36-x64"
11 - PYTHON: "C:\\Python36-x64"
12 PYTHON_VERSION: "3.6.x"
12 PYTHON_VERSION: "3.6.x"
13 PYTHON_ARCH: "64"
13 PYTHON_ARCH: "64"
14
14
15 - PYTHON: "C:\\Python37"
16 PYTHON_VERSION: "3.7.x"
17 PYTHON_ARCH: "32"
18
19 - PYTHON: "C:\\Python37-x64"
15 - PYTHON: "C:\\Python37-x64"
20 PYTHON_VERSION: "3.7.x"
16 PYTHON_VERSION: "3.7.x"
21 PYTHON_ARCH: "64"
17 PYTHON_ARCH: "64"
22
18
23 - PYTHON: "C:\\Python38"
19 - PYTHON: "C:\\Python38"
24 PYTHON_VERSION: "3.8.x"
20 PYTHON_VERSION: "3.8.x"
25 PYTHON_ARCH: "32"
21 PYTHON_ARCH: "32"
26
22
27 - PYTHON: "C:\\Python38-x64"
23 - PYTHON: "C:\\Python38-x64"
28 PYTHON_VERSION: "3.8.x"
24 PYTHON_VERSION: "3.8.x"
29 PYTHON_ARCH: "64"
25 PYTHON_ARCH: "64"
30
26
31 init:
27 init:
32 - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
28 - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
33
29
34 install:
30 install:
35 - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
31 - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
36 - "%CMD_IN_ENV% python -m pip install --upgrade setuptools pip"
32 - "%CMD_IN_ENV% python -m pip install --upgrade setuptools pip"
37 - "%CMD_IN_ENV% pip install nose coverage"
33 - "%CMD_IN_ENV% pip install nose coverage"
38 - "%CMD_IN_ENV% pip install .[test]"
34 - "%CMD_IN_ENV% pip install .[test]"
39 - "%CMD_IN_ENV% mkdir results"
35 - "%CMD_IN_ENV% mkdir results"
40 - "%CMD_IN_ENV% cd results"
36 - "%CMD_IN_ENV% cd results"
41 test_script:
37 test_script:
42 - "%CMD_IN_ENV% iptest --coverage xml"
38 - "%CMD_IN_ENV% iptest --coverage xml"
General Comments 0
You need to be logged in to leave comments. Login now