File tree 1 file changed +15
-0
lines changed
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,14 @@ environment:
17
17
PYTHON_VERSION : " 3.4"
18
18
PYTHON_ARCH : " 64"
19
19
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
+
20
28
install :
21
29
# Install miniconda Python
22
30
- " powershell ./tools/install_python.ps1"
@@ -26,6 +34,13 @@ install:
26
34
# the parent CMD process).
27
35
- " SET PATH=%PYTHON%;%PYTHON%\\ Scripts;%PATH%"
28
36
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
+
29
44
# Check that we have the expected version and architecture for Python
30
45
- " python --version"
31
46
- " python -c \" import struct; print(struct.calcsize('P') * 8)\" "
You can’t perform that action at this time.
0 commit comments