##// END OF EJS Templates
Backport PR #13505: try to fix Appveyor
Matthias Bussonnier -
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
7
8 - PYTHON: "C:\\Python37-x64"
8 - PYTHON: "C:\\Python37-x64"
9 PYTHON_VERSION: "3.7.x"
9 PYTHON_VERSION: "3.7.x"
10 PYTHON_ARCH: "64"
10 PYTHON_ARCH: "64"
11
11
12 - PYTHON: "C:\\Python38"
12 - PYTHON: "C:\\Python38"
13 PYTHON_VERSION: "3.8.x"
13 PYTHON_VERSION: "3.8.x"
14 PYTHON_ARCH: "32"
14 PYTHON_ARCH: "32"
15
15
16 - PYTHON: "C:\\Python38-x64"
16 - PYTHON: "C:\\Python38-x64"
17 PYTHON_VERSION: "3.8.x"
17 PYTHON_VERSION: "3.8.x"
18 PYTHON_ARCH: "64"
18 PYTHON_ARCH: "64"
19
19
20 init:
20 init:
21 - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
21 - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
22
22
23 install:
23 install:
24 - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
24 - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
25 - "%CMD_IN_ENV% python -m pip install --upgrade setuptools pip"
25 - "%CMD_IN_ENV% python -m pip install --upgrade setuptools pip<22"
26 - "%CMD_IN_ENV% pip install nose coverage pytest"
26 - "%CMD_IN_ENV% pip install nose coverage pytest"
27 - "%CMD_IN_ENV% pip install .[test]"
27 - "%CMD_IN_ENV% pip install .[test]"
28 - "%CMD_IN_ENV% mkdir results"
28 - "%CMD_IN_ENV% mkdir results"
29 - "%CMD_IN_ENV% cd results"
29 - "%CMD_IN_ENV% cd results"
30 test_script:
30 test_script:
31 - "%CMD_IN_ENV% iptest --coverage xml"
31 - "%CMD_IN_ENV% iptest --coverage xml"
General Comments 0
You need to be logged in to leave comments. Login now