Skip to content

Commit 27b8be5

Browse files
committed
test
1 parent fc0b587 commit 27b8be5

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/linux.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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:

.github/workflows/mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ jobs:
517517
if: ${{ matrix.test.run_condition }}
518518
uses: ./src/.github/actions/install_wheel
519519
with:
520-
packages: "openvino;openvino_tokenizers[transformers];openvino_genai;"
520+
packages: "openvino;openvino_tokenizers[transformers];openvino_genai"
521521
requirements_files: "${{ env.SRC_DIR }}/tests/python_tests/requirements.txt"
522522
local_wheel_dir: ${{ env.INSTALL_DIR }}/wheels
523523

tools/who_what_benchmark/whowhatbench/wwb.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -838,6 +838,7 @@ def print_rag_results(evaluator):
838838
def main():
839839
args = parse_args()
840840
check_args(args)
841+
print("print ci")
841842

842843
version_str = f'openvino runtime version: {ov.get_version()}'
843844
if args.genai:

0 commit comments

Comments
 (0)