From 289296f9e160927ff9508e636d22981f99097cd9 Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Fri, 29 Dec 2017 17:00:03 +0200 Subject: [PATCH] try to fix appveyor: python path. --- .appveyor.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index e090f574..7ea6182f 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,10 +1,13 @@ --- +environment: + matrix: + - PYTHON: "C:\\PYTHON36" # Shamelessly taken from https://github.com/plicease/Dist-Zilla-PluginBundle-Author-Plicease/blob/master/.appveyor.yml # Thanks! install: - choco install strawberryperl - - copy c:\Python35-x64\python.exe c:\Python35-x64\python3.exe - - SET PATH=C:\Python35-x64;C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin;%PATH% + - copy %PYTHON%\python.exe %PYTHON%\python3.exe + - SET PATH=%PYTHON%;C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin;%PATH% - python3 -mpip install flake8 - python3 -mpip install random2 - python3 -mpip install py2exe