Skip to content

Commit bc5a6e0

Browse files
committed
PYTHON-1548 - Add a simple Appveyor config
1 parent ccbd857 commit bc5a6e0

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

appveyor.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
environment:
2+
3+
matrix:
4+
5+
# For Python versions available on Appveyor, see
6+
# http://www.appveyor.com/docs/installed-software#python
7+
8+
# Though we support Python 3.4 we're not testing it here.
9+
# Testing it requires extra work that doesn't seem necessary
10+
# since we already test it in Evergreen.
11+
# See https://packaging.python.org/guides/supporting-windows-using-appveyor/#support-script
12+
13+
# Test both 32 and 64bit builds.
14+
15+
- PYTHON: "C:\\Python27"
16+
- PYTHON: "C:\\Python35"
17+
- PYTHON: "C:\\Python36"
18+
- PYTHON: "C:\\Python27-x64"
19+
- PYTHON: "C:\\Python35-x64"
20+
- PYTHON: "C:\\Python36-x64"
21+
22+
build: off
23+
24+
test_script:
25+
# We just want to test C extension builds for pull requests.
26+
# No need for a running MongoDB instance.
27+
- "%PYTHON%\\python.exe setup.py test"

0 commit comments

Comments
 (0)