diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 0000000..cc800fc --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,35 @@ +build: false + +environment: + matrix: + - PYTHON: "C:\\Python27" + PYTHON_VERSION: "2.7.8" + PYTHON_ARCH: "32" + + - PYTHON: "C:\\Python33" + PYTHON_VERSION: "3.3.5" + PYTHON_ARCH: "32" + + - PYTHON: "C:\\Python34" + PYTHON_VERSION: "3.4.1" + PYTHON_ARCH: "32" + + - PYTHON: "C:\\Python35" + PYTHON_VERSION: "3.5.4" + PYTHON_ARCH: "32" + + - PYTHON: "C:\\Python36" + PYTHON_VERSION: "3.6.4" + PYTHON_ARCH: "32" + +init: + - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%" + +install: + - "%PYTHON%/Scripts/pip.exe install -e ." + - "%PYTHON%/Scripts/pip.exe install -r requirements-docs.txt" + - "%PYTHON%/Scripts/pip.exe install -r requirements-pytest.txt" + +test_script: + - "%PYTHON%/Scripts/pytest" +