httpie-cli/appveyor.yml

14 lines
457 B
YAML
Raw Normal View History

2014-04-27 17:54:30 +02:00
build: false
2014-04-27 17:38:12 +02:00
environment:
matrix:
2014-04-27 17:54:30 +02:00
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python33"
2014-04-26 10:14:57 +02:00
install:
2014-04-27 17:54:30 +02:00
- 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 ."
2014-04-26 10:07:35 +02:00
test_script:
2014-04-27 17:54:30 +02:00
- "%PYTHON%\\Scripts\\pip.exe --version"
- "%PYTHON%\\Scripts\\http.exe --debug"
- "%PYTHON%\\python.exe setup.py test"