Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 12 additions & 13 deletions .evergreen/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -386,19 +386,18 @@ buildvariants:
# - name: test-chatgpt-retrieval-plugin-remote
# batchtime: 10080 # 1 week

# TODO: INTPYTHON-669
# - name: test-llama-index-vectorstore-python-rhel
# display_name: LlamaIndex RHEL Vector Store
# tags: [python]
# expansions:
# DIR: llama-index-python-vectorstore
# run_on:
# - rhel87-small
# tasks:
# - name: test-llama-index-local
# # TODO: INTPYTHON-440
# # - name: test-llama-index-remote
# # batchtime: 10080 # 1 week
- name: test-llama-index-vectorstore-python-rhel
display_name: LlamaIndex RHEL Vector Store
tags: [python]
expansions:
DIR: llama-index-python-vectorstore
run_on:
- rhel87-small
tasks:
- name: test-llama-index-local
# TODO: INTPYTHON-440
# - name: test-llama-index-remote
# batchtime: 10080 # 1 week

- name: test-docarray-python-rhel
display_name: DocArray RHEL
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,4 @@ env.sh
haystack-fulltext/haystack-core-integrations
haystack-embeddings/haystack-core-integrations
pymongo-voyageai/pymongo-voyageai
llama-index-python-vectorstore/llama_index/
4 changes: 1 addition & 3 deletions llama-index-python-vectorstore/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -eu

# Get the MONGODB_URI and OPENAI_API_KEY.
# Get the MONGODB_URI and AZURE_OPENAI_API_KEY.
SCRIPT_DIR=$(realpath "$(dirname ${BASH_SOURCE[0]})")
ROOT_DIR=$(dirname $SCRIPT_DIR)
. $ROOT_DIR/env.sh
Expand All @@ -24,8 +24,6 @@ pip install uv

# Run tests.
UV_PYTHON=$PYTHON_BINARY \
MONGODB_URI="$MONGODB_URI" \
OPENAI_API_KEY="$OPENAI_API_KEY" \
MONGODB_DATABASE="llama_index_test_db" \
MONGODB_COLLECTION="llama_index_test_vectorstore" \
MONGODB_INDEX="vector_index" \
Expand Down