Skip to content

Commit

Permalink
add .appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mhils committed Jul 25, 2016
1 parent 60a6ed4 commit a2744d4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .appveyor.yml
@@ -0,0 +1,17 @@
environment:
matrix:
- python: 27
- python: 35
# - python: 35-x64

install:
- "SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%"
- python -m pip install -U pip wheel setuptools
- pip install -r requirements.txt

build: false

test_script:
- python -u setup.py clean
- python -u setup.py bdist_wheel --static-deps
- ps: Get-ChildItem dist\*.whl | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }

0 comments on commit a2744d4

Please sign in to comment.