Skip to content

Commit a410f03

Browse files
Merge pull request #446 from arokem/appveyor-3.5
TST: Add testing on Python 3.5 on Appveyor Add Windows tests on Python 3.5.
2 parents 2a9e96f + 63c8a49 commit a410f03

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

appveyor.yml

+15
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,14 @@ environment:
1717
PYTHON_VERSION: "3.4"
1818
PYTHON_ARCH: "64"
1919

20+
- PYTHON: "C:\\Python35-conda64"
21+
PYTHON_VERSION: "3.5"
22+
PYTHON_ARCH: "64"
23+
24+
- PYTHON: "C:\\Python35-conda32"
25+
PYTHON_VERSION: "3.5"
26+
PYTHON_ARCH: "32"
27+
2028
install:
2129
# Install miniconda Python
2230
- "powershell ./tools/install_python.ps1"
@@ -26,6 +34,13 @@ install:
2634
# the parent CMD process).
2735
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
2836

37+
# Set up a conda environment:
38+
- conda config --set always_yes yes
39+
- conda update -q conda
40+
- conda info -a
41+
- conda create -q -n test-environment python=%PYTHON_VERSION%
42+
- activate test-environment
43+
2944
# Check that we have the expected version and architecture for Python
3045
- "python --version"
3146
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""

0 commit comments

Comments
 (0)