File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -191,18 +191,18 @@ jobs:
191
191
cd ${{ github.workspace }}/tests
192
192
&python -m pip install --user --no-warn-script-location (ls "../wheelhouse/opencv*.whl")
193
193
if ($LastExitCode -ne 0) {throw $LastExitCode}
194
+ $cv2_path = python -c "import cv2; import os; print(os.path.dirname(cv2.__file__))"
195
+ Copy-Item "${{ github.workspace }}\wheelhouse\libopenblas.dll" "$cv2_path\libopenblas.dll"
194
196
python get_build_info.py
195
197
shell : powershell
196
198
env :
197
199
PATH : ${{ github.workspace }}\wheelhouse;${{ env.PATH }}
198
- PYTHONPATH : ${{ github.workspace }}\wheelhouse;${{ env.PYTHONPATH }}
199
200
- name : Run tests
200
201
run : |
201
202
cd ${{ github.workspace }}/opencv
202
203
python modules\python\test\test.py -v --repo .
203
204
env :
204
205
PATH : ${{ github.workspace }}\wheelhouse;${{ env.PATH }}
205
- PYTHONPATH : ${{ github.workspace }}\wheelhouse;${{ env.PYTHONPATH }}
206
206
207
207
- name : Pylint test
208
208
run : |
You can’t perform that action at this time.
0 commit comments