diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..6c7997c4 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,24 @@ +version: build-{build}-{branch} + +environment: + matrix: + # http://www.appveyor.com/docs/installed-software#python lists available + # versions + - PYTHON: "C:\\Python26" + - PYTHON: "C:\\Python27" + - PYTHON: "C:\\Python33" + - PYTHON: "C:\\Python34" + - PYTHON: "C:\\Python35" + +init: + - "echo %PYTHON%" + +install: + - "set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" + - python --version + - pip install tox + +build: off + +test_script: + - tox -e py diff --git a/tox.ini b/tox.ini index 9ad1f089..3cd66326 100644 --- a/tox.ini +++ b/tox.ini @@ -8,6 +8,11 @@ commands = deps = zope.event +[testenv:py] +commands = + python --version + {[testenv]commands} + [testenv:coverage] usedevelop = true basepython =