From 8859763182f1966a882edc03180d556952fd0792 Mon Sep 17 00:00:00 2001 From: Yen Chi Hsuan Date: Fri, 4 Mar 2016 01:36:08 +0800 Subject: [PATCH] [appveyor] Add appveyor.yml --- appveyor.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..63df6f291 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,15 @@ +# Python 3.2 is not installed on Appveyor +environment: + matrix: + - PYTHON: "C:\\Python26\\python.exe" + - PYTHON: "C:\\Python27\\python.exe" + - PYTHON: "C:\\Python33\\python.exe" + - PYTHON: "C:\\Python34\\python.exe" + - PYTHON: "C:\\Python35\\python.exe" + +install: + - "%PYTHON% -m pip install --verbose -r requirements.txt" + +test_script: + - "%PYTHON% devscripts/i18n.py" + - "%PYTHON% -m nose --verbose test"