File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff 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+
2028install :
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)\" "
You can’t perform that action at this time.
0 commit comments