mirror of
https://github.com/httpie/cli.git
synced 2024-11-14 11:54:47 +01:00
19 lines
581 B
YAML
19 lines
581 B
YAML
# https://ci.appveyor.com/project/jkbrzt/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://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py')
|
|
# - "%PYTHON%/python.exe C:/get-pip.py"
|
|
- "%PYTHON%/Scripts/pip.exe install -U pip setuptools"
|
|
- "%PYTHON%/Scripts/pip.exe install -e ."
|
|
test_script:
|
|
- "%PYTHON%/Scripts/pip.exe --version"
|
|
- "%PYTHON%/Scripts/http.exe --debug"
|
|
- "%PYTHON%/python.exe setup.py test"
|