From 9f5f50ad7dd4591b9aa3ed6aee7d00f8c4b741a9 Mon Sep 17 00:00:00 2001 From: PyYoshi Date: Mon, 17 Oct 2016 14:33:46 +0900 Subject: [PATCH] add appveyor config --- appveyor.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..a18d0f2 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,26 @@ +environment: + matrix: + - PYTHON: "C:\\Python27" + - PYTHON: "C:\\Python33" + - PYTHON: "C:\\Python34" + - PYTHON: "C:\\Python35" + - PYTHON: "C:\\Python27-x64" + - PYTHON: "C:\\Python33-x64" + DISTUTILS_USE_SDK: "1" + - PYTHON: "C:\\Python34-x64" + DISTUTILS_USE_SDK: "1" + - PYTHON: "C:\\Python35-x64" + +install: + - "%PYTHON%\\python.exe -m pip install -U pip wheel nose cython" + +build: off + +test_script: + - "build.cmd %PYTHON%\\python.exe setup.py nosetests" + +after_test: + - "build.cmd %PYTHON%\\python.exe setup.py bdist_wheel" + +artifacts: + - path: dist\*