From a584239a12fe12dd32ffcfca4bda1b428aa9c5f3 Mon Sep 17 00:00:00 2001 From: LMBooth Date: Sat, 28 Oct 2023 13:53:28 +0100 Subject: [PATCH] Update appveyor.yml --- appveyor.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 1c92714..0358fc5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -28,9 +28,12 @@ matrix: install: # Install dependencies - ps: | - pip install --upgrade --no-warn-script-location urllib3>=2.0.5 - pip install . - pip install pytest pytest-timeout ruff + if ($env:APPVEYOR_BUILD_WORKER_IMAGE -eq "Visual Studio 2019") { + # Windows-specific setup here + pip install --upgrade urllib3>=2.0.5 + pip install . + pip install pytest pytest-timeout ruff + } - sh: | case $APPVEYOR_BUILD_WORKER_IMAGE in "ubuntu2204")