Skip to content

Commit

Permalink
Update test-windows.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
viferga authored Jan 30, 2025
1 parent fb79963 commit 56f6ec0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 56f6ec0

Please sign in to comment.