-
-
Notifications
You must be signed in to change notification settings - Fork 176
/
appveyor.yml
31 lines (27 loc) · 1004 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
environment:
matrix:
# For Python versions available on Appveyor, see
# https://www.appveyor.com/docs/windows-images-software/#python
# The list here is complete (excluding Python 2.6, which
# isn't covered by this document) at the time of writing.
# - PYTHON: "C:\\Python27"
# - PYTHON: "C:\\Python33"
# - PYTHON: "C:\\Python34"
# - PYTHON: "C:\\Python35"
# - PYTHON: "C:\\Python27-x64"
# - PYTHON: "C:\\Python33-x64"
# DISTUTILS_USE_SDK: "1"
# - PYTHON: "C:\\Python34-x64"
# DISTUTILS_USE_SDK: "1"
# - PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python37-x64"
install:
# We need wheel installed to build wheels
- "%PYTHON%\\python.exe -m pip install -U pip wheel setuptools"
- "%PYTHON%\\python.exe -m pip install pytest"
- "%PYTHON%\\python.exe -m pip install -r tests/requirements.txt"
- "%PYTHON%\\python.exe setup.py install"
build: off
test_script:
- "%PYTHON%\\python.exe -m pytest"