Skip to content

Commit

Permalink
Add an appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Dec 28, 2016
1 parent 64f1e20 commit b9e59f8
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions appveyor.yml
@@ -0,0 +1,28 @@
environment:

matrix:
- python: 27
- python: 27-x64
- python: 33
- python: 33-x64
- python: 34
- python: 34-x64
- python: 35
- python: 35-x64
- python: 36
- python: 36-x64
- { python: 27, SUBUNIT: 1 }
- { python: 27-x64, SUBUNIT: 1 }

install:
- "SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%"
- pip install -e .[test]
- ps: if($env:SUBUNIT -eq 1) { pip install python-subunit }

build: false

test_script:
- python setup.py -q test -q

on_success:
- echo Build succesful!

0 comments on commit b9e59f8

Please sign in to comment.