Codebase list python-werkzeug / upstream/0.12.1+dfsg1 appveyor.yml
upstream/0.12.1+dfsg1

Tree @upstream/0.12.1+dfsg1 (Download .tar.gz)

appveyor.yml @upstream/0.12.1+dfsg1raw · history · blame

build: false  # Not a C# project, build stuff at the test step instead.
environment:
  matrix:
    - PYTHON: "C:/Python27"
    - PYTHON: "C:/Python33"
    - 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 tox"

test_script:
  - "%PYTHON%/Scripts/tox.exe -e py-normal"