summaryrefslogtreecommitdiff
path: root/.appveyor.yaml
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2016-01-30 14:34:22 +0100
committerAnthon van der Neut <anthon@mnt.org>2016-01-30 14:34:22 +0100
commit83d423358b0bc51690c172ea25ee4ad514e04370 (patch)
tree22eb88e4519034d576bb30f0d1d0b27e2a37094e /.appveyor.yaml
parente9ca59578e9b21226fe3ef48bd2ca4729bba9460 (diff)
downloadruamel.yaml-83d423358b0bc51690c172ea25ee4ad514e04370.tar.gz
debugging appveyor
Diffstat (limited to '.appveyor.yaml')
-rw-r--r--.appveyor.yaml11
1 files changed, 6 insertions, 5 deletions
diff --git a/.appveyor.yaml b/.appveyor.yaml
index 0080ac6..b798cd7 100644
--- a/.appveyor.yaml
+++ b/.appveyor.yaml
@@ -1,9 +1,9 @@
environment:
-
matrix:
- - PYTHON: C:\Python266
- PYTHON_VERSION: '2.6.6'
- PYTHON_ARCH: '32'
+ - PYTHON_HOME: C:\Python26
+# - PYTHON: C:\Python266
+# PYTHON_VERSION: '2.6.6'
+# PYTHON_ARCH: '32'
- PYTHON: C:\Python27
# - PYTHON: C:\Python33
# - PYTHON: C:\Python34
@@ -17,7 +17,8 @@ environment:
# - PYTHON: 'C:\Python35-x64'
install:
- - SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%
+ - IF [%PYTHON_HOME%]==[C:\Python26] appveyor DownloadFile https://www.python.org/ftp/python/2.6.6/python-2.6.6.msi
+ - IF [%PYTHON_HOME%]==[C:\Python26] msiexec /i python-2.6.6.msi /qn - SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%
- python.exe -c "import sys, os; print sys.executable"
- '%PYTHON%\python.exe -c "import sys, os; print sys.executable"'
- |