From b24a05f6215c286ae4ec8bd8071b8a6402ee6faa Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Mon, 16 Oct 2017 09:20:53 -0400 Subject: [PATCH] Remove 32bit windows testing CI config The appveyor windows testing is much slower than travis, mostly because the different jobs are run serially. Submitted patches are often left waiting for several minutes while it finishes. We can reduce this wait time by limiting the number of windows jobs we run. This commit does that by removing the 32 bit windows jobs. We were previously running each python version twice once on 64 bit windows and again on 32bit. This is a bit unecessary as this is very unlikely to ever cause an issue. It was also a waste of test resources. --- .appveyor.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 0d3e5809..71bce4ca 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -6,26 +6,14 @@ environment: CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\appveyor\\run_with_env.cmd" matrix: - - PYTHON: "C:\\Python27" - PYTHON_VERSION: "2.7.10" - PYTHON_ARCH: "32" - TOX_ENV: "py27" - PYTHON: "C:\\Python27-x64" PYTHON_VERSION: "2.7.10" PYTHON_ARCH: "64" TOX_ENV: "py27" - - PYTHON: "C:\\Python36" - PYTHON_VERSION: "3.6.1" - PYTHON_ARCH: "32" - TOX_ENV: "py36" - PYTHON: "C:\\Python36-x64" PYTHON_VERSION: "3.6.1" PYTHON_ARCH: "64" TOX_ENV: "py36" - - PYTHON: "C:\\Python35" - PYTHON_VERSION: "3.5.3" - PYTHON_ARCH: "32" - TOX_ENV: "py35" - PYTHON: "C:\\Python35-x64" PYTHON_VERSION: "3.5.3" PYTHON_ARCH: "64"