##// END OF EJS Templates
try to fix app-veyor
Matthias Bussonnier -
Show More
@@ -1,27 +1,27 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 global:
6 global:
7 APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2022'
7 APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2022'
8 COLUMNS: 120 # Appveyor web viwer window width is 130 chars
8 COLUMNS: 120 # Appveyor web viwer window width is 130 chars
9
9
10 matrix:
10 matrix:
11 - PYTHON: "C:\\Python38"
11 - PYTHON: "C:\\Python38"
12 PYTHON_VERSION: "3.8.x"
12 PYTHON_VERSION: "3.8.x"
13 PYTHON_ARCH: "32"
13 PYTHON_ARCH: "32"
14
14
15 init:
15 init:
16 - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
16 - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
17
17
18 install:
18 install:
19 - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
19 - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
20 - python -m pip install --upgrade setuptools pip
20 - python -m pip install --upgrade setuptools 'pip<22'
21 - pip install pytest-cov
21 - pip install pytest-cov
22 - pip install -e .[test_extra]
22 - pip install -e .[test_extra]
23 test_script:
23 test_script:
24 - pytest --color=yes -ra --cov --cov-report=xml
24 - pytest --color=yes -ra --cov --cov-report=xml
25 on_finish:
25 on_finish:
26 - curl -Os https://uploader.codecov.io/latest/windows/codecov.exe
26 - curl -Os https://uploader.codecov.io/latest/windows/codecov.exe
27 - codecov -e PYTHON_VERSION,PYTHON_ARCH
27 - codecov -e PYTHON_VERSION,PYTHON_ARCH
General Comments 0
You need to be logged in to leave comments. Login now