File tree Expand file tree Collapse file tree 4 files changed +57
-1
lines changed Expand file tree Collapse file tree 4 files changed +57
-1
lines changed Original file line number Diff line number Diff line change @@ -153,6 +153,20 @@ tasks:
153
153
- func : " setup remote atlas"
154
154
- func : " execute tests"
155
155
156
+ - name : test-langgraph-store-python-local
157
+ tags : [local]
158
+ commands :
159
+ - func : " fetch repo"
160
+ - func : " setup local atlas"
161
+ - func : " execute tests"
162
+
163
+ - name : test-langgraph-store-python-remote
164
+ tags : [remote]
165
+ commands :
166
+ - func : " fetch repo"
167
+ - func : " setup remote atlas"
168
+ - func : " execute tests"
169
+
156
170
- name : test-chatgpt-retrieval-plugin-local
157
171
tags : [local]
158
172
commands :
@@ -338,6 +352,18 @@ buildvariants:
338
352
- name : test-langgraph-python-remote
339
353
batchtime : 10080 # 1 week
340
354
355
+ - name : test-langgraph-store-python-rhel
356
+ display_name : Langgraph Store RHEL Python
357
+ tags : [python]
358
+ expansions :
359
+ DIR : langgraph-store-python
360
+ run_on :
361
+ - rhel87-small
362
+ tasks :
363
+ - name : test-langgraph-store-python-local
364
+ - name : test-langgraph-store-python-remote
365
+ batchtime : 10080 # 1 week
366
+
341
367
# TODO: INTPYTHON-668
342
368
# - name: test-chatgpt-retrieval-plugin-python-rhel
343
369
# display_name: ChatGPT Retrieval Plugin
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ case $DIR in
23
23
semantic-kernel-csharp)
24
24
MONGODB_URI=$SEMANTIC_KERNEL_MONGODB_URI
25
25
;;
26
- langchain-python | langgraph-python)
26
+ langchain-python | langgraph-python | langgraph-store-python )
27
27
MONGODB_URI=$LANGCHAIN_MONGODB_URI
28
28
;;
29
29
chatgpt-retrieval-plugin)
Original file line number Diff line number Diff line change
1
+ REPO_NAME = langchain-mongodb
2
+ REPO_ORG = langchain-ai
3
+ DATABASE = langgraph-store-test
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # WORKING_DIR = src/langchain-python/langchain
4
+ set -eu
5
+
6
+ # Get the MONGODB_URI and OPENAI_API_KEY.
7
+ SCRIPT_DIR=$( realpath " $( dirname ${BASH_SOURCE[0]} ) " )
8
+ ROOT_DIR=$( dirname $SCRIPT_DIR )
9
+ . $ROOT_DIR /env.sh
10
+
11
+ . $ROOT_DIR /.evergreen/utils.sh
12
+
13
+ PYTHON_BINARY=$( find_python3)
14
+
15
+ # shellcheck disable=SC2164
16
+ cd libs/langgraph-store-mongodb
17
+
18
+ $PYTHON_BINARY -m venv venv_pipeline
19
+ source venv_pipeline/bin/activate
20
+
21
+ pip install uv rust-just
22
+
23
+ just install
24
+
25
+ just unit_tests
26
+
27
+ just integration_tests
You can’t perform that action at this time.
0 commit comments