forked from mongodb/mongo-python-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
27 lines (20 loc) · 807 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
environment:
matrix:
# For Python versions available on Appveyor, see
# http://www.appveyor.com/docs/installed-software#python
# Though we support Python 3.4 we're not testing it here.
# Testing it requires extra work that doesn't seem necessary
# since we already test it in Evergreen.
# See https://packaging.python.org/guides/supporting-windows-using-appveyor/#support-script
# Test both 32 and 64bit builds.
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36-x64"
build: off
test_script:
# We just want to test C extension builds for pull requests.
# No need for a running MongoDB instance.
- "%PYTHON%\\python.exe setup.py test"