2014-04-27 18:27:44 +02:00
|
|
|
# https://ci.appveyor.com/project/jkbr/httpie
|
2014-04-27 17:54:30 +02:00
|
|
|
build: false
|
2014-04-27 17:38:12 +02:00
|
|
|
environment:
|
|
|
|
matrix:
|
2014-04-27 22:15:21 +02:00
|
|
|
- PYTHON: "C:/Python27"
|
|
|
|
- PYTHON: "C:/Python34"
|
2014-04-27 22:14:11 +02:00
|
|
|
init:
|
2014-04-27 22:20:23 +02:00
|
|
|
- "ECHO %PYTHON%"
|
2014-04-27 22:15:21 +02:00
|
|
|
- ps: "ls C:/Python*"
|
2014-04-26 10:14:57 +02:00
|
|
|
install:
|
2014-04-27 22:15:21 +02:00
|
|
|
- ps: (new-object net.webclient).DownloadFile('https://raw.github.com/pypa/pip/master/contrib/get-pip.py', 'C:/get-pip.py')
|
2014-04-27 22:20:23 +02:00
|
|
|
- "%PYTHON%/python.exe C:/get-pip.py"
|
2014-04-27 22:15:21 +02:00
|
|
|
- "%PYTHON%/Scripts/pip.exe install -e ."
|
2014-04-26 10:07:35 +02:00
|
|
|
test_script:
|
2014-04-27 22:15:21 +02:00
|
|
|
- "%PYTHON%/Scripts/pip.exe --version"
|
|
|
|
- "%PYTHON%/Scripts/http.exe --debug"
|
|
|
|
- "%PYTHON%/python.exe setup.py test"
|