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