changeset 672:783ff8bc4e03

cm: Add AppVeyor support.
author Ludovic Chabant <ludovic@chabant.com>
date Fri, 04 Mar 2016 22:37:07 -0800
parents 3c4075e37dc2
children d6403c21bdea
files appveyor.yml
diffstat 1 files changed, 17 insertions(+), 0 deletions(-) [+]
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"
+