@@ -618,7 +618,19 @@ jobs:
618618 run_condition : ${{ fromJSON(needs.smart_ci.outputs.affected_components).RAG.test }}
619619 timeout : 30
620620 - name : ' WWB tests'
621- cmd : ' python -m pytest -v ./tools/who_what_benchmark/tests -m "not nanollava"'
621+ cmd : |
622+ python -m pip install transformers==5.2.0
623+ python -m pip install --no-deps git+https://github.com/huggingface/optimum-intel.git@423b4237df4d51efe077675eb1c531ffe4c82c83
624+ python -m pip show transformers
625+ python -m pytest -v ./tools/who_what_benchmark/tests -m "not nanollava"
626+ run_condition : ${{ fromJSON(needs.smart_ci.outputs.affected_components).WWB.test }}
627+ timeout : 120
628+ - name : ' WWB tests'
629+ cmd : |
630+ python -m pip install transformers==5.5.0
631+ python -m pip install --no-deps git+https://github.com/huggingface/optimum-intel.git@423b4237df4d51efe077675eb1c531ffe4c82c83
632+ python -m pip show transformers
633+ python -m pytest -v ./tools/who_what_benchmark/tests -m "not nanollava"
622634 run_condition : ${{ fromJSON(needs.smart_ci.outputs.affected_components).WWB.test }}
623635 timeout : 120
624636 - name : ' EAGLE3 speculative decoding tests'
@@ -640,7 +652,8 @@ jobs:
640652 timeout : 60
641653 - name : ' VLM (qwen3-vl)'
642654 cmd : |
643- python -m pip install transformers==4.57.0 git+https://github.com/huggingface/optimum-intel.git@0566b76f094d4c3084e06d29a248b39a1bff3fa4
655+ python -m pip install transformers==4.57.0
656+ python -m pip install --no-deps git+https://github.com/huggingface/optimum-intel.git@0566b76f094d4c3084e06d29a248b39a1bff3fa4
644657 python -m pytest -s -v tests/python_tests/test_vlm_pipeline.py --override-ini cache_dir=/mount/caches/pytest/ -k "qwen3-vl"
645658 run_condition : ${{ fromJSON(needs.smart_ci.outputs.affected_components).visual_language.test }}
646659 timeout : 60
@@ -679,12 +692,10 @@ jobs:
679692
680693 - name : Install GenAI Wheels
681694 if : ${{ matrix.test.run_condition }}
682- uses : ./src/.github/actions/install_wheel
683- with :
684- packages : " openvino;openvino_tokenizers[transformers];openvino_genai;whowhatbench"
685- requirements_files : " ${{ env.SRC_DIR }}/tests/python_tests/requirements.txt"
686- local_wheel_dir : ${{ env.INSTALL_DIR }}/wheels
687-
695+ run : |
696+ python -m pip install ${{ env.INSTALL_DIR }}/wheels/whowhatbench-*.whl
697+ python -m pip install -r ${{ env.SRC_DIR }}/tests/python_tests/requirements.txt
698+ python -m pip install ${{ env.INSTALL_DIR }}/wheels/openvino-*.whl ${{ env.INSTALL_DIR }}/wheels/openvino_tokenizers-*.whl[transformers] ${{ env.INSTALL_DIR }}/wheels/openvino_genai-*.whl
688699 - name : Tests
689700 if : ${{ matrix.test.run_condition }}
690701 run : ${{ matrix.test.cmd }}
@@ -792,11 +803,9 @@ jobs:
792803
793804 - name : Install GenAI wheels
794805 if : ${{ matrix.test.run_condition }}
795- uses : ./src/.github/actions/install_wheel
796- with :
797- packages : " openvino;openvino_tokenizers[transformers];openvino_genai[testing]"
798- requirements_files : " ${{ env.SRC_DIR }}/samples/requirements.txt"
799- local_wheel_dir : ${{ env.INSTALL_DIR }}/wheels
806+ run : |
807+ python -m pip install -r ${{ env.SRC_DIR }}/samples/requirements.txt
808+ python -m pip install ${{ env.INSTALL_DIR }}/wheels/openvino-*.whl ${{ env.INSTALL_DIR }}/wheels/openvino_tokenizers-*.whl[transformers] ${{ env.INSTALL_DIR }}/wheels/openvino_genai-*.whl[testing]
800809
801810 - name : Setup Node
802811 if : ${{ matrix.test.run_condition }}
@@ -878,12 +887,9 @@ jobs:
878887 run : chmod +x ${{ env.INSTALL_DIR }}/samples_bin/*
879888
880889 - name : Install GenAI wheels
881- uses : ./src/.github/actions/install_wheel
882- with :
883- packages : " openvino;openvino_tokenizers[transformers];openvino_genai[testing]"
884- requirements_files : " ${{ env.SRC_DIR }}/samples/requirements.txt;${{ env.SRC_DIR }}/tools/llm_bench/requirements.txt"
885- local_wheel_dir : ${{ env.INSTALL_DIR }}/wheels
886-
890+ run : |
891+ python -m pip install -r ${{ env.SRC_DIR }}/samples/requirements.txt ${{ env.SRC_DIR }}/tools/llm_bench/requirements.txt
892+ python -m pip install ${{ env.INSTALL_DIR }}/wheels/openvino-*.whl ${{ env.INSTALL_DIR }}/wheels/openvino_tokenizers-*.whl[transformers] ${{ env.INSTALL_DIR }}/wheels/openvino_genai-*.whl[testing]
887893 - name : Convert models for cache types gtests
888894 if : ${{ fromJSON(needs.smart_ci.outputs.affected_components).continuous_batching }}
889895 run : |
0 commit comments