Skip to content

Commit

Permalink
Splitted the OpenCV Test
Browse files Browse the repository at this point in the history
  • Loading branch information
RohanKrMahato committed Dec 11, 2024
1 parent 095741b commit a46c9c0
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,11 +220,24 @@ jobs:
metacall ./test/requirements.py | findstr "123456"
IF %ERRORLEVEL% NEQ 0 exit /B 1
- name: Python OpenCV Test
- name: Python OpenCV Test (install OpenCV)
shell: cmd
run: |
metacall pip install -r test/opencv/requirements.txt
metacall pip uninstall numpy -y
- name: Python OpenCV Test (Uninstall Numpy came with OpenCV)
shell: cmd
run: |
metacall pip uninstall numpy -yes
- name: Python OpenCV Test (install Numpy==1.21.6)
shell: cmd
run: |
metacall pip install numpy==1.21.6
- name: Python OpenCV Test (Test opencv.py)
shell: cmd
run: |
metacall ./test/opencv/opencv.py
- name: Deploy & FaaS Test
Expand Down

0 comments on commit a46c9c0

Please sign in to comment.