From bc5c00d72af37bd804b867684709eac67f129352 Mon Sep 17 00:00:00 2001 From: Jib Date: Fri, 1 Nov 2024 14:39:45 -0400 Subject: [PATCH] changed import path --- semantic-kernel-python/run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/semantic-kernel-python/run.sh b/semantic-kernel-python/run.sh index f66ec5f..4958719 100644 --- a/semantic-kernel-python/run.sh +++ b/semantic-kernel-python/run.sh @@ -29,7 +29,7 @@ OPENAI_API_KEY=$openai_api_key \ AZURE_OPENAI_API_KEY="" \ MONGODB_ATLAS_CONNECTION_STRING=$CONN_STRING \ Python_Integration_Tests=1 \ - uv run pytest tests/integration/connectors/memory/test_mongodb_atlas.py -k test_collection_knn + uv run pytest tests/integration/memory/memory_stores/test_mongodb_atlas_memory_store.py -k test_collection_knn # shellcheck disable=SC2154 OPENAI_API_KEY=$openai_api_key \ @@ -39,4 +39,4 @@ OPENAI_API_KEY=$openai_api_key \ AZURE_OPENAI_API_KEY="" \ MONGODB_ATLAS_CONNECTION_STRING=$CONN_STRING \ Python_Integration_Tests=1 \ - uv run pytest tests/integration/connectors/memory/test_mongodb_atlas.py + uv run pytest tests/integration/memory/memory_stores/test_mongodb_atlas_memory_store.py