From 11f3097c1e00a71cac6ac8a7c9db4b9c7a22c513 Mon Sep 17 00:00:00 2001 From: "Tobias Wellnitz, DH1TW" Date: Sat, 1 Jun 2024 00:52:52 +0200 Subject: [PATCH] adopted download URL for redis (Windows tests) --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 84f3389..a69d560 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -190,9 +190,9 @@ jobs: # since there is no official redis version for windows. # Redis is then installed an run as a service run: | - C:\msys64\usr\bin\wget.exe https://github.com/redis-windows/redis-windows/releases/download/7.0.14/Redis-7.0.14-Windows-x64-with-Service.tar.gz + C:\msys64\usr\bin\wget.exe https://github.com/redis-windows/redis-windows/releases/download/7.0.14/Redis-7.0.14-Windows-x64-msys2-with-Service.zip C:\msys64\usr\bin\tar.exe -xvzf Redis-7.0.14-Windows-x64-with-Service.tar.gz - sc.exe create Redis binpath=D:\a\pyhamtools\pyhamtools\Redis-7.0.14-Windows-x64-with-Service\RedisService.exe start= auto + sc.exe create Redis binpath=D:\a\pyhamtools\pyhamtools\Redis-7.0.14-Windows-x64-msys2-with-Service\RedisService.exe start= auto net start Redis - name: "Run tests for ${{ matrix.python-version }}"