##// END OF EJS Templates
TST: Remove unneeded requirement on pywin32...
TST: Remove unneeded requirement on pywin32 The only routine that requires `pywin32` is `win32_clipboard_get` which is not tested.

File last commit:

r27013:a5c798b3
r27013:a5c798b3
Show More
appveyor.yml
39 lines | 977 B | text/x-yaml | YamlLexer
build: false
matrix:
fast_finish: true # immediately finish build once one of the jobs fails.
environment:
global:
COLUMNS: 120 # Appveyor web viwer window width is 130 chars
matrix:
- PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7.x"
PYTHON_ARCH: "64"
- PYTHON: "C:\\Python38"
PYTHON_VERSION: "3.8.x"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python38-x64"
PYTHON_VERSION: "3.8.x"
PYTHON_ARCH: "64"
init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- python -m pip install --upgrade setuptools pip
- pip install nose coverage pytest pytest-cov pytest-trio matplotlib pandas
- pip install -e .[test]
- mkdir results
- cd results
test_script:
- iptest --coverage xml
- cd ..
- pytest --color=yes -ra --cov --cov-report=xml
on_finish:
- curl -Os https://uploader.codecov.io/latest/windows/codecov.exe
- codecov -e PYTHON_VERSION,PYTHON_ARCH