-
Notifications
You must be signed in to change notification settings - Fork 42
/
appveyor.yml
34 lines (34 loc) · 951 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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"