From 4be08916581e9a2fb626bf146e18834ee94c6072 Mon Sep 17 00:00:00 2001 From: Piotr Lizonczyk Date: Fri, 3 Nov 2017 23:19:29 +0100 Subject: [PATCH] Trying out appveyor Windows builds --- appveyor.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100755 index 0000000..97842f9 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,22 @@ +environment: + matrix: + - PYTHON: "C:\\Python35" + - PYTHON: "C:\\Python36" + - PYTHON: "C:\\Python35-x64" + - PYTHON: "C:\\Python36-x64" + +install: + - "%PYTHON%\\python.exe -m pip install -r requirements.txt" + - "%PYTHON%\\python.exe -m pip install pytest" + +build: off + +test_script: + - "%PYTHON%\\python.exe -m pytest" + +after_test: + - "%PYTHON%\\python.exe setup.py bdist_wheel" + +artifacts: + # bdist_wheel puts your built wheel in the dist directory + - path: dist\*