From 18b4f5df6a007a7cba108de1ced3779ef47f2ff0 Mon Sep 17 00:00:00 2001 From: Pablo Santiago Blum de Aguiar Date: Tue, 29 Mar 2016 23:35:19 -0300 Subject: [PATCH] #486: Run tests on AppVeyor --- appveyor.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..d7072f7f --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,22 @@ +build: false + +environment: + matrix: + - PYTHON: "C:/Python27" + - PYTHON: "C:/Python33" + - PYTHON: "C:/Python34" + - PYTHON: "C:/Python35" + +init: + - "ECHO %PYTHON%" + - ps: "ls C:/Python*" + +install: + - ps: (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py') + - "%PYTHON%/python.exe C:/get-pip.py" + - "%PYTHON%/Scripts/pip.exe install -U setuptools" + - "%PYTHON%/python.exe setup.py develop" + - "%PYTHON%/Scripts/pip.exe install -U -r requirements.txt" + +test_script: + - "%PYTHON%/Scripts/py.test.exe -sv"