diff --git a/.github/workflows/causal_lm_cpp.yml b/.github/workflows/causal_lm_cpp.yml index 44e9f258a9..e3d8198ae7 100644 --- a/.github/workflows/causal_lm_cpp.yml +++ b/.github/workflows/causal_lm_cpp.yml @@ -731,8 +731,6 @@ jobs: - uses: ./.github/actions/install_python_deps - name: Download and convert tiny-random-minicpmv-2_6 model and an image run: | - python -m pip install git+https://github.com/eaidova/optimum-intel.git@ea/minicpmv - python -m pip install -U "optimum<1.23" --no-dependencies source ./ov/setupvars.sh optimum-cli export openvino -m katuni4ka/tiny-random-minicpmv-2_6 tiny-random-minicpmv-2_6 --trust-remote-code --task image-text-to-text wget https://github.com/openvinotoolkit/openvino_notebooks/assets/29454499/d5fbbd1a-d484-415c-88cb-9986625b7b11 --output-document cat.jpg diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 0942483a65..1842d205cd 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -269,8 +269,6 @@ jobs: python -m pip install . --verbose --find-links ${OV_INSTALL_DIR}/wheels python -m pytest ./tests/python_tests --ignore ./tests/python_tests/test_whisper_generate_api.py --ignore ./tests/python_tests/test_vlm_api.py -k "not test_set_chat_template" - - run: python -m pip install git+https://github.com/eaidova/optimum-intel.git@ea/minicpmv - - run: python -m pip install -U "optimum<1.23" --no-dependencies - run: > source ${OV_INSTALL_DIR}/setupvars.sh && python -m pytest ./tests/python_tests/test_vlm_api.py diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 7dede276d2..5a86965e3f 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -364,8 +364,6 @@ jobs: run: | . "${{ env.OV_INSTALL_DIR }}/setupvars.ps1" python -m pip install ./thirdparty/openvino_tokenizers/[transformers] -r ./tests/python_tests/requirements.txt --find-links ${env:OV_INSTALL_DIR}/wheels --upgrade-strategy eager - python -m pip install git+https://github.com/eaidova/optimum-intel.git@ea/minicpmv - python -m pip install -U "optimum<1.23" --no-dependencies python -m pytest ./tests/python_tests/test_vlm_api.py env: PYTHONPATH: "./build/" # cmd evaluates variables in a different way. Setting PYTHONPATH before setupvars.bat instead of doing that after solves that.