From adedcc641644b05add3a785ddedeb771e94dd146 Mon Sep 17 00:00:00 2001 From: Adrien Ferrand Date: Thu, 6 Dec 2018 18:33:46 +0100 Subject: [PATCH] Reduce to the minimal requirements to ensure Windows compatibility: execute tests only against lower and higher version of Python supported by Certbot on Windows. (#6565) --- appveyor.yml | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 725ecfbff..ce2b5998c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,17 +1,9 @@ +image: Visual Studio 2015 + environment: matrix: - - FYI: Python 3.4 on Windows Server 2012 R2 - TOXENV: py34 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 - - FYI: Python 3.4 on Windows Server 2016 - TOXENV: py34 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 - - FYI: Python 3.5 on Windows Server 2016 - TOXENV: py35 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 - - FYI: Python 3.7 on Windows Server 2016 + code coverage - TOXENV: py37-cover - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + - TOXENV: py35 + - TOXENV: py37-cover branches: only: @@ -23,7 +15,6 @@ install: # Use Python 3.7 by default - "SET PATH=C:\\Python37;C:\\Python37\\Scripts;%PATH%" # Check env - - "echo %APPVEYOR_BUILD_WORKER_IMAGE%" - "python --version" # Upgrade pip to avoid warnings - "python -m pip install --upgrade pip"