Skip to content

Commit 08dd0a6

Browse files
committed
rebase fixes
1 parent eeee5f9 commit 08dd0a6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ jobs:
342342
runner: 'aks-linux-8-cores-64gb'
343343

344344
needs: [ openvino_download, genai_build_cmake, genai_build_wheel, genai_build_samples ]
345-
timeout-minutes: 45
345+
timeout-minutes: 60
346346
defaults:
347347
run:
348348
shell: bash

tests/python_tests/samples/test_visual_language_chat.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import pytest
66
import sys
77

8-
from conftest import TEST_FILES, SAMPLES_PY_DIR, SAMPLES_CPP_DIR
8+
from conftest import SAMPLES_PY_DIR, SAMPLES_CPP_DIR
99
from test_utils import run_sample
1010

1111
class TestVisualLanguageChat:
@@ -19,7 +19,7 @@ class TestVisualLanguageChat:
1919
],
2020
indirect=["convert_model"],
2121
)
22-
@pytest.mark.parametrize("download_test_content", [TEST_FILES["monalisa.jpg"]], indirect=True)
22+
@pytest.mark.parametrize("download_test_content", ["monalisa.jpg"], indirect=True)
2323
def test_sample_visual_language_chat(self, convert_model, download_test_content, sample_args):
2424
# Test Python sample
2525
py_script = os.path.join(SAMPLES_PY_DIR, "visual_language_chat/visual_language_chat.py")

0 commit comments

Comments
 (0)