@@ -617,13 +617,13 @@ jobs:
617617 timeout : 30
618618 - name : ' WWB tests'
619619 cmd : |
620- pip install ${{ env.INSTALL_DIR }}/wheels/whowhatbench --extra-index-url https://download.pytorch.org/whl/cpu
620+ python -m pip install ${{ env.INSTALL_DIR }}/wheels/whowhatbench --extra-index-url https://download.pytorch.org/whl/cpu
621621 python -m pytest -v ./tools/who_what_benchmark/tests -m "not nanollava"
622622 run_condition : ${{ fromJSON(needs.smart_ci.outputs.affected_components).WWB.test }}
623623 timeout : 120
624624 - name : ' WWB tests (nanollava)'
625625 cmd : |
626- pip install ${{ env.INSTALL_DIR }}/wheels/whowhatbench --extra-index-url https://download.pytorch.org/whl/cpu
626+ python -m pip install ${{ env.INSTALL_DIR }}/wheels/whowhatbench --extra-index-url https://download.pytorch.org/whl/cpu
627627 python -m pip install transformers==4.48.0
628628 python -m pytest -v ./tools/who_what_benchmark/tests -m nanollava
629629 run_condition : ${{ fromJSON(needs.smart_ci.outputs.affected_components).WWB.test }}
@@ -670,7 +670,7 @@ jobs:
670670 if : ${{ matrix.test.run_condition }}
671671 uses : ./src/.github/actions/install_wheel
672672 with :
673- packages : " openvino;openvino_tokenizers[transformers];openvino_genai; "
673+ packages : " openvino;openvino_tokenizers[transformers];openvino_genai"
674674 requirements_files : " ${{ env.SRC_DIR }}/tests/python_tests/requirements.txt"
675675 local_wheel_dir : ${{ env.INSTALL_DIR }}/wheels
676676
@@ -874,7 +874,7 @@ jobs:
874874 uses : ./src/.github/actions/install_wheel
875875 with :
876876 packages : " openvino;openvino_tokenizers[transformers];openvino_genai[testing]"
877- requirements_files : " ${{ env.SRC_DIR }}/samples/requirements.txt; "
877+ requirements_files : " ${{ env.SRC_DIR }}/samples/requirements.txt"
878878 local_wheel_dir : ${{ env.INSTALL_DIR }}/wheels
879879
880880 - name : gtests unit tests
@@ -895,7 +895,7 @@ jobs:
895895 - name : Test LLM Benchmark Tools
896896 if : ${{ fromJSON(needs.smart_ci.outputs.affected_components).llm_bench }}
897897 run : |
898- pip install ${{ env.SRC_DIR }}/tools/llm_bench/requirements.txt
898+ pip install -r ${{ env.SRC_DIR }}/tools/llm_bench/requirements.txt
899899 source ${{ env.INSTALL_DIR }}/setupvars.sh
900900 python -m pytest -vs ${{ env.SRC_DIR }}/tests/python_tests/samples/test_tools_llm_benchmark.py -m "samples"
901901 env :
0 commit comments