summaryrefslogtreecommitdiff
path: root/.appveyor.yaml
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2016-01-30 14:02:31 +0100
committerAnthon van der Neut <anthon@mnt.org>2016-01-30 14:02:31 +0100
commit632ab164d1e7b775392afe766c65d82c6bf214b9 (patch)
tree70132a4e5aed49b3f09809d7092b56d504118361 /.appveyor.yaml
parentf691159c32d159c56ebb4074d215e364777da720 (diff)
downloadruamel.yaml-632ab164d1e7b775392afe766c65d82c6bf214b9.tar.gz
debugging
Diffstat (limited to '.appveyor.yaml')
-rw-r--r--.appveyor.yaml15
1 files changed, 11 insertions, 4 deletions
diff --git a/.appveyor.yaml b/.appveyor.yaml
index 83a8887..f0db177 100644
--- a/.appveyor.yaml
+++ b/.appveyor.yaml
@@ -16,19 +16,26 @@ environment:
install:
- >
+ %PYTHON%\python.exe -c "import sys, os; print sys.executable"
+ - >
+ %PYTHON%\python.exe -c "import sys, os;
+ os.system('%s -c \"print True\"'
+ % sys.executable)
+ - >
+ if sys.version_info < (2, 7) else True"
%PYTHON%\python.exe -c "import sys, os;
- os.system('%s -c \\"print True\\"'
+ os.system('%s -c \"print True\"'
% sys.executable)
if sys.version_info < (2, 7) else True"
- >
%PYTHON%\python.exe -c "import sys, os;
- os.system('%s -c \\"import urllib2; open(\\'c:\\\\get-pip.py\\', \\'w\\').
- write(urllib2.urlopen(\\'https://bootstrap.pypa.io/get-pip.py\\').read())\\"'
+ os.system('%s -c \"import urllib2; open(\'c:\\get-pip.py\', \'w\').
+ write(urllib2.urlopen(\'https://bootstrap.pypa.io/get-pip.py\').read())\"'
% sys.executable)
if sys.version_info < (2, 7) else True"
- >
%PYTHON%\python.exe -c "import sys, os;
- os.system('%s c:\\get-pip.py' % sys.executable)
+ os.system('%s c:\get-pip.py' % sys.executable)
if sys.version_info < (2, 7) else True"
- '%PYTHON%\python.exe -m pip install wheel'