appveyor.yml
build: off
skip_branch_with_pr: true
environment:
matrix:
- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.8"
PYTHON_ARCH: "64"
TOXENV: "py35"
- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6.9"
PYTHON_ARCH: "64"
TOXENV: "py36"
- PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7.5"
PYTHON_ARCH: "64"
TOXENV: "py37"
- PYTHON: "C:\\Python38-x64"
PYTHON_VERSION: "3.8.0"
PYTHON_ARCH: "64"
TOXENV: "py38"
install:
- ps: if (-not(Test-Path($env:PYTHON))) { & .ci\install.ps1 }
- "choco install codecov"
- "copy C:\\MinGW\\bin\\mingw32-make.exe C:\\MinGW\\bin\\make.exe"
- "set PATH=%PYTHON%;%PYTHON%\\Scripts;C:\\MinGW\\bin;%PATH%"
- "set MSSDK=1"
- "set DISTUTILS_USE_SDK=1"
- "python -m pip install --upgrade pip wheel setuptools"
- "make test-install"
test_script:
- "set PYTHONPATH=."
- "make test"
on_success:
- "codecov -f coverage.xml"