From db04eeec608a4b4165a169f5b792135eac1bedbe Mon Sep 17 00:00:00 2001 From: Alexander Clausen Date: Fri, 29 Oct 2021 11:56:03 +0200 Subject: [PATCH] use $(imageName) for pool.vmImage --- azure-pipelines.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 03225b5..7c2141c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -187,8 +187,6 @@ stages: reportDirectory: '$(System.DefaultWorkingDirectory)/**/htmlcov' - job: macos_tests - pool: - vmImage: 'macOS-latest' strategy: matrix: Python36: @@ -198,9 +196,13 @@ stages: Python37: python.version: '3.7' TOXENV: 'py37' + imageName: 'macos-latest' Python38: python.version: '3.8' TOXENV: 'py38' + imageName: 'macos-latest' + pool: + vmImage: '$(imageName)' variables: TOXENV: '$(TOXENV)' steps: