From ac2659c33e26ff6d947b18c0e93395be8ead30e4 Mon Sep 17 00:00:00 2001 From: Paul Moore Date: Mon, 29 Sep 2014 19:37:59 +0100 Subject: [PATCH] Added appveyor control files --- MANIFEST.in | 1 + appveyor.yml | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 appveyor.yml diff --git a/MANIFEST.in b/MANIFEST.in index 304975404..606ee03af 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -11,6 +11,7 @@ exclude .travis.yml exclude pip/_vendor/Makefile exclude tox.ini exclude dev-requirements.txt +exclude appveyor.yml recursive-include pip/_vendor *.pem recursive-include docs Makefile *.rst *.py *.bat diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..823f07f30 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,31 @@ +environment: + matrix: + - PYTHON: "C:\\Python27" + TOXENV: "py27" + + - PYTHON: "C:\\Python33" + TOXENV: "py33" + + - PYTHON: "C:\\Python34" + TOXENV: "py34" + + - PYTHON: "C:\\Python35" + TOXENV: "py35" + + - PYTHON: "C:\\Python27-x64" + TOXENV: "py27" + + - PYTHON: "C:\\Python33-x64" + TOXENV: "py33" + + - PYTHON: "C:\\Python34-x64" + TOXENV: "py34" + + - PYTHON: "C:\\Python35-x64" + TOXENV: "py35" + +install: + cmd: "%PYTHON%\\python.exe -m pip install tox" +build: off +test_script: + - "%PYTHON%\\Scripts\\tox.exe -e %TOXENV% -- -m unit -n 8"