mirror of
https://github.com/httpie/cli.git
synced 2024-11-09 01:15:04 +01:00
24 lines
555 B
YAML
24 lines
555 B
YAML
# https://ci.appveyor.com/project/jkbrzt/httpie
|
|
build: false
|
|
|
|
environment:
|
|
matrix:
|
|
- PYTHON: "C:/Python27"
|
|
# Python 3.4 has outdated pip
|
|
# - PYTHON: "C:/Python34"
|
|
- PYTHON: "C:/Python35"
|
|
|
|
init:
|
|
- "ECHO %PYTHON%"
|
|
- ps: "ls C:/Python*"
|
|
|
|
install:
|
|
# FIXME: updating pip fails with PermissionError
|
|
# - "%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"
|