Skip to content

Commit

Permalink
Fix appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
donnemartin committed May 9, 2016
1 parent 5b17cf8 commit 5a0b257
Showing 1 changed file with 41 additions and 1 deletion.
1 change: 0 additions & 1 deletion appveyor.yml

This file was deleted.

41 changes: 41 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# What Python version is installed where:
# http://www.appveyor.com/docs/installed-software#python

environment:
matrix:
- PYTHON: "C:\\Python27"
TOX_ENV: "py27"

- PYTHON: "C:\\Python33"
TOX_ENV: "py33"

- PYTHON: "C:\\Python34"
TOX_ENV: "py34"

- PYTHON: "C:\\Python35"
TOX_ENV: "py35"


init:
- "%PYTHON%/python -V"
- "%PYTHON%/python -c \"import struct;print( 8 * struct.calcsize(\'P\'))\""

install:
- "%PYTHON%/Scripts/easy_install -U pip"
- "%PYTHON%/Scripts/pip install tox"
- "%PYTHON%/Scripts/pip install wheel"

build: false # Not a C# project, build stuff at the test step instead.

test_script:
- "%PYTHON%/Scripts/tox -e %TOX_ENV%"

after_test:
- "%PYTHON%/python setup.py bdist_wheel"
- ps: "ls dist"

artifacts:
- path: dist\*

#on_success:
# - TODO: upload the content of dist/*.whl to a public wheelhouse

0 comments on commit 5a0b257

Please sign in to comment.