Repository: incubator-ariatosca
Updated Branches:
  refs/heads/ARIA-395-appveyor-failures 8ddad8a1f -> d53b1b0a2 (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/d53b1b0a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/d53b1b0a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/d53b1b0a

Branch: refs/heads/ARIA-395-appveyor-failures
Commit: d53b1b0a21405b591219638889c81dd82010acb7
Parents: 737fff5
Author: Tal Liron <[email protected]>
Authored: Mon Oct 23 12:08:59 2017 -0500
Committer: Tal Liron <[email protected]>
Committed: Mon Oct 23 15:48:13 2017 -0500

----------------------------------------------------------------------
 appveyor.yml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/d53b1b0a/appveyor.yml
----------------------------------------------------------------------
diff --git a/appveyor.yml b/appveyor.yml
index a03b180..4cddcf5 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -26,7 +26,9 @@ 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; 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:
@@ -38,4 +40,4 @@ before_test:
 test_script:
   - pip --version
   - tox --version
-  - tox -e %TOX_ENV%
+  - PYTEST_PROCESSES=1 tox -e %TOX_ENV%

Reply via email to