httpie-cli/appveyor.yml

24 lines
555 B
YAML
Raw Normal View History

2015-07-03 18:55:45 +02:00
# https://ci.appveyor.com/project/jkbrzt/httpie
2014-04-27 17:54:30 +02:00
build: false
2016-03-02 02:58:50 +01:00
2014-04-27 17:38:12 +02:00
environment:
matrix:
2014-04-27 22:15:21 +02:00
- PYTHON: "C:/Python27"
2016-03-02 02:58:50 +01:00
# Python 3.4 has outdated pip
# - PYTHON: "C:/Python34"
2016-03-02 02:37:58 +01:00
- PYTHON: "C:/Python35"
2016-03-02 02:58:50 +01:00
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*"
2016-03-02 02:33:43 +01:00
install:
2016-03-02 02:58:50 +01:00
# FIXME: updating pip fails with PermissionError
# - "%PYTHON%/Scripts/pip.exe install -U pip setuptools"
2014-04-27 22:15:21 +02:00
- "%PYTHON%/Scripts/pip.exe install -e ."
2016-03-02 02:33:43 +01:00
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"