From 5ab74ae1950be1f656ee290eaa550fd63bcd3c45 Mon Sep 17 00:00:00 2001 From: Erin O'Connell Date: Mon, 25 Sep 2017 00:07:05 -0600 Subject: [PATCH] add tests for 32 bit windows installations which I believe is the default installer from python.org --- appveyor.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index cf243cd9..3dfbcfd3 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -15,21 +15,41 @@ environment: PYTHON_ARCH: "64" TOXENV: "py27" + - PYTHON: "C:\\Python27" + PYTHON_VERSION: "2.7.x" + PYTHON_ARCH: "32" + TOXENV: "py27" + - PYTHON: "C:\\Python34-x64" PYTHON_VERSION: "3.4.x" PYTHON_ARCH: "64" TOXENV: "py34" + - PYTHON: "C:\\Python34" + PYTHON_VERSION: "3.4.x" + PYTHON_ARCH: "32" + TOXENV: "py34" + - PYTHON: "C:\\Python35-x64" PYTHON_VERSION: "3.5.x" PYTHON_ARCH: "64" TOXENV: "py35" + - PYTHON: "C:\\Python35" + PYTHON_VERSION: "3.5.x" + PYTHON_ARCH: "32" + TOXENV: "py35" + - PYTHON: "C:\\Python36-x64" PYTHON_VERSION: "3.6.x" PYTHON_ARCH: "64" TOXENV: "py36" + - PYTHON: "C:\\Python36" + PYTHON_VERSION: "3.6.x" + PYTHON_ARCH: "32" + TOXENV: "py36" + install: # Install Python (from the official .msi of http://python.org) and pip when # not already installed.