Add appveyor.yml file for continuous windows testing

This commit is contained in:
Joshua Harlow 2016-02-22 19:09:13 -08:00
parent fc9cd6cbbe
commit 9f1b2d3883
1 changed files with 21 additions and 0 deletions

21
appveyor.yml Normal file
View File

@ -0,0 +1,21 @@
build: false
environment:
matrix:
- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.8"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python34"
PYTHON_VERSION: "3.4.1"
PYTHON_ARCH: "32"
init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
install:
- "%PYTHON%/Scripts/pip.exe install six"
- "%PYTHON%/Scripts/pip.exe install monotonic"
- "%PYTHON%/Scripts/pip.exe install nose"
- "%PYTHON%/Scripts/pip.exe install coverage"
test_script:
- "%PYTHON%/Scripts/nosetests"