From 9eb6f88ed5b63638a099c1fdedd050442b8b065c Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Thu, 26 Nov 2020 09:33:43 +0100 Subject: [PATCH] Reduce number of builds to speed up CI --- azure-pipelines.yml | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 43fd5a5c8..c44b4a8c7 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -41,31 +41,31 @@ jobs: Python35Windows: imageName: 'vs2017-win2016' python.version: '3.5' +# Test on one OS per python 3.6/3.7/3.8 to speed up CI Python36Linux: imageName: 'ubuntu-16.04' python.version: '3.6' - Python36Windows: - imageName: 'vs2017-win2016' - python.version: '3.6' - Python36Mac: - imageName: 'macos-10.14' - python.version: '3.6' - # Don't test on 3.7 for now to speed up builds - Python37Linux: - imageName: 'ubuntu-16.04' - python.version: '3.7' +# Python36Windows: +# imageName: 'vs2017-win2016' +# python.version: '3.6' +# Python36Mac: +# imageName: 'macos-10.14' +# python.version: '3.6' +# Python37Linux: +# imageName: 'ubuntu-16.04' +# python.version: '3.7' Python37Windows: imageName: 'vs2017-win2016' python.version: '3.7' - Python37Mac: - imageName: 'macos-10.14' - python.version: '3.7' - Python38Linux: - imageName: 'ubuntu-16.04' - python.version: '3.8' - Python38Windows: - imageName: 'vs2017-win2016' - python.version: '3.8' +# Python37Mac: +# imageName: 'macos-10.14' +# python.version: '3.7' +# Python38Linux: +# imageName: 'ubuntu-16.04' +# python.version: '3.8' +# Python38Windows: +# imageName: 'vs2017-win2016' +# python.version: '3.8' Python38Mac: imageName: 'macos-10.14' python.version: '3.8'