mirror of
https://github.com/httpie/cli.git
synced 2024-11-08 08:55:05 +01:00
18 lines
550 B
YAML
18 lines
550 B
YAML
# https://ci.appveyor.com/project/jakubroztocil/httpie
|
|
build: false
|
|
environment:
|
|
matrix:
|
|
- PYTHON: "C:/Python27"
|
|
- PYTHON: "C:/Python34"
|
|
init:
|
|
- "ECHO %PYTHON%"
|
|
- ps: "ls C:/Python*"
|
|
install:
|
|
- ps: (new-object net.webclient).DownloadFile('https://raw.github.com/pypa/pip/master/contrib/get-pip.py', 'C:/get-pip.py')
|
|
- "%PYTHON%/python.exe C:/get-pip.py"
|
|
- "%PYTHON%/Scripts/pip.exe install -e ."
|
|
test_script:
|
|
- "%PYTHON%/Scripts/pip.exe --version"
|
|
- "%PYTHON%/Scripts/http.exe --debug"
|
|
- "%PYTHON%/python.exe setup.py test"
|