Skip to content

Commit be9a2e3

Browse files
committed
Updated pr.
1 parent b636979 commit be9a2e3

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/run-unittests-py38-cov-report.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,7 @@ jobs:
4646
--ignore tests/unitary/with_extras/feature_store \
4747
--ignore tests/unitary/with_extras/operator/feature-store \
4848
--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
5150
- name: "slow_tests"
5251
test-path: "tests/unitary/with_extras/model"
5352

tests/unitary/with_extras/langchain/embeddings/test_oci_model_deployment_endpoint.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,14 @@
66

77
"""Test OCI Data Science Model Deployment Endpoint."""
88

9+
import pytest
10+
import sys
911
from unittest.mock import MagicMock, patch
1012
from ads.llm import OCIDataScienceEmbedding
1113

14+
if sys.version_info < (3, 9):
15+
pytest.skip(allow_module_level=True)
16+
1217

1318
@patch("ads.llm.OCIDataScienceEmbedding._embed_with_retry")
1419
def test_embed_documents(mock_embed_with_retry) -> None:

0 commit comments

Comments
 (0)