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"