Skip to content
This repository was archived by the owner on Apr 29, 2021. It is now read-only.

Add Appveyor integration #13

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: build-{build}-{branch}

environment:
matrix:
# http://www.appveyor.com/docs/installed-software#python lists available
# versions
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python27-x64"

install:
- "set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- python --version
- pip install wheel aiotest futures mock six unittest2
- pip install -e .

build_script:
- python setup.py bdist_wheel

test_script:
- python runtests.py

artifacts:
- path: dist/*.whl