Skip to content

Commit a0d4922

Browse files
committed
build on win-py36, & 32bits
1 parent d593ec1 commit a0d4922

File tree

1 file changed

+18
-5
lines changed

1 file changed

+18
-5
lines changed

appveyor.yml

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,28 +14,41 @@ environment:
1414
PYTHON_VERSION: "2.7.x"
1515
PYTHON_ARCH: "64"
1616

17+
- PYTHON: "C:\\Python34"
18+
PYTHON_VERSION: "3.4.x"
19+
PYTHON_ARCH: "32"
20+
1721
- PYTHON: "C:\\Python34-x64"
1822
PYTHON_VERSION: "3.4.x"
1923
PYTHON_ARCH: "64"
2024

25+
- PYTHON: "C:\\Python35"
26+
PYTHON_VERSION: "3.5.x"
27+
PYTHON_ARCH: "32"
28+
2129
- PYTHON: "C:\\Python35-x64"
2230
PYTHON_VERSION: "3.5.x"
2331
PYTHON_ARCH: "64"
2432

33+
- PYTHON: "C:\\Python36"
34+
PYTHON_VERSION: "3.6.x"
35+
PYTHON_ARCH: "32"
36+
37+
- PYTHON: "C:\\Python36-x64"
38+
PYTHON_VERSION: "3.6.x"
39+
PYTHON_ARCH: "64"
2540

2641
install:
42+
- "%PYTHON%\\python.exe -m pip install wheel setuptools pip pytest mock"
2743
# Get the latest stable version of Node.js or io.js
2844
- ps: Install-Product node $env:nodejs_version
29-
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
3045

3146
build_script:
32-
- "%CMD_IN_ENV% python -m pip install -U setuptools pip"
33-
- "%CMD_IN_ENV% pip install pytest mock"
34-
- "%CMD_IN_ENV% pip install ."
47+
- "%PYTHON%\\python.exe -m pip install ."
3548

3649

3750
test_script:
38-
- "%CMD_IN_ENV% py.test --verbose -p no:cacheprovider"
51+
- "%PYTHON%\\python.exe -m py.test --verbose -p no:cacheprovider"
3952

4053
branches:
4154
only:

0 commit comments

Comments
 (0)