forked from ihmwg/python-ihm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
23 lines (19 loc) · 837 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
environment:
# For Python versions available on Appveyor, see
# https://www.appveyor.com/docs/windows-images-software/#python
matrix:
- {APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015, PYTHON: "C:\\Python27"}
- {APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019, PYTHON: "C:\\Python37-x64"}
- {APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019, PYTHON: "C:\\Python38"}
- {APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019, PYTHON: "C:\\Python38-x64"}
- {APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019, PYTHON: "C:\\Python39-x64"}
install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "python.exe -m pip install codecov coverage nose"
- choco install -y swig
- python.exe setup.py build_ext --inplace
build: off
test_script:
- "nosetests --with-coverage --cover-branches"
on_success:
- "codecov"