Skip to content

Commit

Permalink
Add basic Appveyor CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
webknjaz committed Jan 3, 2018
1 parent 647be0e commit c6a8fc2
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
environment:
matrix:
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python27-x64"

install:
# symlink python from a directory with a space
- "mklink /d \"C:\\Program Files\\Python\" %PYTHON%"
- "SET PYTHON=\"C:\\Program Files\\Python\""
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "python -m pip install tox"


before_build:
- python -m pip install wheel

build_script:
- python -m setup bdist_wheel

test_script:
- tox -e python

version: '{build}'

artifacts:
- path: dist\*

0 comments on commit c6a8fc2

Please sign in to comment.