From 098b0ade72ba0436a12e91069c50700224cb46c3 Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Tue, 24 Jul 2018 12:23:40 +0100 Subject: [PATCH] appveyor: test on python3.7 64-bit; no longer test on 2.7 x64 and 3.6 x86 appveyor is slooow. It's enough we test 2.7 on 32-bit and 3.6 and 3.7 for 64-bit. I think.. --- .appveyor.yml | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index f04db29ec..5187fb06e 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -5,21 +5,16 @@ environment: TOXENV: "py27-cov" TOXPYTHON: "C:\\Python27\\python.exe" - - JOB: "3.6 32-bit" - PYTHON_HOME: "C:\\Python36" - TOXENV: "py36-cov" - TOXPYTHON: "C:\\Python36\\python.exe" - - - JOB: "2.7 64-bit" - PYTHON_HOME: "C:\\Python27-x64" - TOXENV: "py27-cov" - TOXPYTHON: "C:\\Python27-x64\\python.exe" - - JOB: "3.6 64-bit" PYTHON_HOME: "C:\\Python36-x64" TOXENV: "py36-cov" TOXPYTHON: "C:\\Python36-x64\\python.exe" + - JOB: "3.7 64-bit" + PYTHON_HOME: "C:\\Python37-x64" + TOXENV: "py37-cov" + TOXPYTHON: "C:\\Python37-x64\\python.exe" + install: # If there is a newer build queued for the same PR, cancel this one. # The AppVeyor 'rollout builds' option is supposed to serve the same