Skip to content

Commit

Permalink
Python3.3 Windows CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jkbrzt committed Apr 27, 2014
1 parent 87806ac commit bae8519
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions appveyor.yml
@@ -1,13 +1,14 @@
# https://ci.appveyor.com/project/jkbr/httpie
branches:
only:
- master
environment:
matrix:
- PYTHON: C:\Python27
- PYTHON: C:\Python33
install:
- ps: (new-object net.webclient).DownloadFile('https://raw.github.com/pypa/pip/master/contrib/get-pip.py', 'C:\get-pip.py')
- C:\Python27\python.exe c:\get-pip.py
- C:\Python27\Scripts\pip.exe install -e .
- ps: $env:PYTHON\python.exe c:\get-pip.py
- ps: $env:PYTHON\Scripts\pip.exe install -e .
build: off
test_script:
- C:\Python27\Scripts\pip.exe --version
- C:\Python27\Scripts\http.exe --debug
- C:\Python27\python.exe setup.py test
- ps: $env:PYTHON\Scripts\pip.exe --version
- ps: $env:PYTHON\Scripts\http.exe --debug
- ps: $env:PYTHON\python.exe setup.py test

0 comments on commit bae8519

Please sign in to comment.