File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 46
46
--ignore tests/unitary/with_extras/feature_store \
47
47
--ignore tests/unitary/with_extras/operator/feature-store \
48
48
--ignore tests/unitary/with_extras/operator/forecast \
49
- --ignore tests/unitary/with_extras/hpo \
50
- --ignore tests/unitary/with_extras/langchain
49
+ --ignore tests/unitary/with_extras/hpo
51
50
- name : " slow_tests"
52
51
test-path : " tests/unitary/with_extras/model"
53
52
Original file line number Diff line number Diff line change 6
6
7
7
"""Test OCI Data Science Model Deployment Endpoint."""
8
8
9
+ import pytest
10
+ import sys
9
11
from unittest .mock import MagicMock , patch
10
12
from ads .llm import OCIDataScienceEmbedding
11
13
14
+ if sys .version_info < (3 , 9 ):
15
+ pytest .skip (allow_module_level = True )
16
+
12
17
13
18
@patch ("ads.llm.OCIDataScienceEmbedding._embed_with_retry" )
14
19
def test_embed_documents (mock_embed_with_retry ) -> None :
You can’t perform that action at this time.
0 commit comments