Skip to content

Commit

Permalink
Tests. Remove duplicated code in AppVeyor conf
Browse files Browse the repository at this point in the history
  • Loading branch information
diyan committed Dec 20, 2016
1 parent 42636e1 commit e65f5bc
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ environment:
matrix:
# https://www.appveyor.com/docs/installed-software/#python
# NOTE Python 2.6 for Windows is no longer supported by the Python core team
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python33"
- PYTHON: "C:\\Python33-x64"
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python34-x64"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python35-x64"
- PYTHON: Python27
- PYTHON: Python27-x64
- PYTHON: Python33
- PYTHON: Python33-x64
- PYTHON: Python34
- PYTHON: Python34-x64
- PYTHON: Python35
- PYTHON: Python35-x64
init:
- ps: |
$ErrorActionPreference = "Stop"
# Override default Python version/architecture
$env:PATH="$env:PYTHON;$env:PYTHON\Scripts;$env:PATH"
$env:Path="C:\$env:PYTHON;C:\$env:PYTHON\Scripts;$env:PATH"
python -c "import platform; print('Python', platform.python_version(), platform.architecture()[0])"
# always install latest pip
$(curl -UseBasicParsing https://bootstrap.pypa.io/get-pip.py).Content | python
Expand Down

0 comments on commit e65f5bc

Please sign in to comment.