From 56f6ec040537a8e9856d68cac469f4fd80107c0d Mon Sep 17 00:00:00 2001 From: Vicente Eduardo Ferrer Garcia <7854099+viferga@users.noreply.github.com> Date: Thu, 30 Jan 2025 13:13:53 -0500 Subject: [PATCH] Update test-windows.yml --- .github/workflows/test-windows.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-windows.yml b/.github/workflows/test-windows.yml index 090978a..845da51 100644 --- a/.github/workflows/test-windows.yml +++ b/.github/workflows/test-windows.yml @@ -28,9 +28,11 @@ jobs: - name: Python Test shell: cmd run: | - metacall pip install -r test/requirements.txt | findstr "Successfully installed" + rem metacall pip install -r test/requirements.txt | findstr "Successfully installed" + metacall pip install -r test/requirements.txt IF %ERRORLEVEL% NEQ 0 exit /B 1 - metacall ./test/requirements.py | findstr "123456" + rem metacall ./test/requirements.py | findstr "123456" + metacall ./test/requirements.py IF %ERRORLEVEL% NEQ 0 exit /B 1 - name: Deploy & FaaS Test