Skip to content

Commit b6e1813

Browse files
Move transformers installation to the end
1 parent c3e7a60 commit b6e1813

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test_openvino_full.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,6 @@ jobs:
5858
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
5959
pip install .[tests]
6060
61-
- name: Install lowest compatible transformers version
62-
if: ${{ matrix.transformers-version != 'latest' }}
63-
run: pip install transformers==${{ matrix.transformers-version }}
64-
6561
- name: Install openvino-nightly
6662
if: ${{ matrix.openvino == 'ov-nightly' }}
6763
run: pip install --pre -U openvino openvino-tokenizers --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/nightly
@@ -78,6 +74,10 @@ jobs:
7874
if: ${{ matrix.nncf == 'nncf-stable' }}
7975
run: pip install .[nncf]
8076

77+
- name: Install the lowest compatible transformers version
78+
if: ${{ matrix.transformers-version != 'latest' }}
79+
run: pip install transformers==${{ matrix.transformers-version }}
80+
8181
- name: Pip freeze
8282
run: pip freeze
8383

0 commit comments

Comments
 (0)