Skip to content

Commit 577dfb3

Browse files
committed
ci check
1 parent 47f8da5 commit 577dfb3

5 files changed

Lines changed: 18 additions & 5 deletions

File tree

.github/workflows/linux.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,17 @@ 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 git+https://github.com/huggingface/optimum-intel.git@transformers-v5
623+
python -m pip show transformers
624+
python -m pytest -v ./tools/who_what_benchmark/tests -m "not nanollava"
625+
run_condition: ${{ fromJSON(needs.smart_ci.outputs.affected_components).WWB.test }}
626+
timeout: 120
627+
- name: 'WWB tests'
628+
cmd: |
629+
python -m pip install transformers==5.5.0 git+https://github.com/huggingface/optimum-intel.git@transformers-v5
630+
python -m pip show transformers
631+
python -m pytest -v ./tools/who_what_benchmark/tests -m "not nanollava"
622632
run_condition: ${{ fromJSON(needs.smart_ci.outputs.affected_components).WWB.test }}
623633
timeout: 120
624634
- name: 'EAGLE3 speculative decoding tests'

samples/export-requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
--extra-index-url https://download.pytorch.org/whl/cpu
22
--extra-index-url https://storage.openvinotoolkit.org/simple/wheels/nightly
33
openvino-tokenizers[transformers]~=2026.2.0.0.dev
4-
https://github.com/huggingface/optimum-intel/archive/2c48d6430c265ac259c1b264f3e2c4025cdd7b76.tar.gz#egg=optimum-intel
4+
# https://github.com/huggingface/optimum-intel/archive/2c48d6430c265ac259c1b264f3e2c4025cdd7b76.tar.gz#egg=optimum-intel
5+
optimum-intel @ https://github.com/huggingface/optimum-intel.git@transformers-v5
56
einops==0.8.2 # For Qwen
67
transformers_stream_generator==0.0.5 # For Qwen
78
diffusers==0.37.1 # For image generation pipelines

tests/python_tests/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
--extra-index-url https://download.pytorch.org/whl/cpu
22
diffusers==0.37.1
3-
https://github.com/huggingface/optimum-intel/archive/2c48d6430c265ac259c1b264f3e2c4025cdd7b76.tar.gz#egg=optimum-intel
3+
optimum-intel @ https://github.com/huggingface/optimum-intel.git@transformers-v5
44
pytest==9.0.3
55
transformers==4.55.4
66
hf_transfer==0.1.9

tools/llm_bench/requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ torch>=2.1.0,<=2.11
1010
transformers[sentencepiece]>=4.40.0,<5.4.0
1111
diffusers>=0.22.0,<=0.37.1
1212
# optimum is in dependency list of optimum-intel
13-
optimum-intel[nncf]>=1.25.0,<=1.27.0
13+
# optimum-intel[nncf]>=1.25.0,<=1.27.0
14+
optimum-intel @ https://github.com/huggingface/optimum-intel.git@transformers-v5
1415
packaging>=20.0,<=26.0
1516
psutil
1617
timm<=1.0.26

tools/who_what_benchmark/requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ accelerate>=0.26.0,<=1.13.0
22
transformers[sentencepiece]>=4.35.2,<5.4.0
33
sentence-transformers>=2.2.2,<=5.4.1
44
openvino-genai
5-
optimum-intel[nncf]>=1.19.0,<=1.27.0
5+
# optimum-intel[nncf]>=1.19.0,<=1.27.0
6+
optimum-intel @ https://github.com/huggingface/optimum-intel.git@transformers-v5
67
pandas>=2.0.3,<=3.0.2
78
numpy>=1.23.5,<=2.4.4
89
tqdm>=4.66.1,<=4.67.3

0 commit comments

Comments
 (0)