Skip to content
This repository has been archived by the owner on Jul 17, 2018. It is now read-only.

Commit

Permalink
ARIA-395 Fix AppVeyor failures due to use of SSL
Browse files Browse the repository at this point in the history
  • Loading branch information
tliron committed Oct 30, 2017
1 parent fae7186 commit ae89ddb
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions appveyor.yml
Expand Up @@ -14,7 +14,6 @@
# limitations under the License.

environment:

TOX_ENV: pywin

matrix:
Expand All @@ -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%

0 comments on commit ae89ddb

Please sign in to comment.