# HG changeset patch # User Ludovic Chabant # Date 1457159827 28800 # Node ID 783ff8bc4e03926a65b5df911b353ed1ddba3efb # Parent 3c4075e37dc2b6f48d87a2373915329f817b74a8 cm: Add AppVeyor support. diff -r 3c4075e37dc2 -r 783ff8bc4e03 appveyor.yml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/appveyor.yml Fri Mar 04 22:37:07 2016 -0800 @@ -0,0 +1,17 @@ +environment: + matrix: + - PYTHON: "C:\\Python34" + - PYTHON: "C:\\Python34-x64" + - PYTHON: "C:\\Python35" + - PYTHON: "C:\\Python35-x64" + +install: + - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" + - "pip install -r requirements.txt" + - "pip install -r dev-requirements.txt" + +build: off + +test_script: + - "py.test" +