Repository: incubator-ariatosca Updated Branches: refs/heads/ARIA-395-appveyor-failures d53b1b0a2 -> 6198df5c3 (forced update)
ARIA-395 Fix AppVeyor failures due to use of SSL Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/6198df5c Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/6198df5c Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/6198df5c Branch: refs/heads/ARIA-395-appveyor-failures Commit: 6198df5c375f81e297f9f1bdf36a4c38a0ef3a4b Parents: 737fff5 Author: Tal Liron <[email protected]> Authored: Mon Oct 23 12:08:59 2017 -0500 Committer: Tal Liron <[email protected]> Committed: Tue Oct 24 10:29:30 2017 -0500 ---------------------------------------------------------------------- appveyor.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/6198df5c/appveyor.yml ---------------------------------------------------------------------- diff --git a/appveyor.yml b/appveyor.yml index a03b180..1158706 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -14,7 +14,6 @@ # limitations under the License. environment: - TOX_ENV: pywin matrix: @@ -26,16 +25,16 @@ build: false install: - SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH% - - ps: (new-object System.Net.WebClient).Downloadfile('https://bootstrap.pypa.io/get-pip.py', 'C:\Users\appveyor\get-pip.py') + # Note: bootstrap.pypa.io seems to have an SSL configuration problem causing downloads to fail, so we will instead get the script from GitHub + # -ps: (new-object System.Net.WebClient).Downloadfile('https://bootstrap.pypa.io/get-pip.py', 'C:\Users\Emblem Parade\Desktop\get-pip.py') + - ps: (new-object System.Net.WebClient).Downloadfile('https://github.com/pypa/get-pip/blob/master/get-pip.py', 'C:\Users\appveyor\get-pip.py') - ps: Start-Process -FilePath "C:\Python27\python.exe" -ArgumentList "C:\Users\appveyor\get-pip.py" -Wait -Passthru before_test: - pip install virtualenv --upgrade - virtualenv env - - 'env\Scripts\activate.bat' + - env\Scripts\activate.bat - pip install tox test_script: - - pip --version - - tox --version - tox -e %TOX_ENV%
