Mercurial > piecrust2
diff appveyor.yml @ 672:783ff8bc4e03
cm: Add AppVeyor support.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Fri, 04 Mar 2016 22:37:07 -0800 |
parents | |
children |
line wrap: on
line diff
--- /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" +