Skip to content

Commit 83a5faf

Browse files
committed
INTPYTHON-598 - Create an AI/ML helper library
1 parent d079ab8 commit 83a5faf

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
REPO_NAME=pymongo-vectorsearch-utils
2+
REPO_ORG=mongodb-labs
3+
DATABASE="pymongo_vectorsearch_utils_test_db"

pymongo-vectorsearch-utils/run.sh

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#!/bin/bash
2+
3+
set -eu
4+
5+
# Get the MONGODB_URI.
6+
SCRIPT_DIR=$(realpath "$(dirname ${BASH_SOURCE[0]})")
7+
ROOT_DIR=$(dirname $SCRIPT_DIR)
8+
. $ROOT_DIR/env.sh
9+
10+
. $ROOT_DIR/.evergreen/utils.sh
11+
12+
PYTHON_BINARY=$(find_python3)
13+
14+
$PYTHON_BINARY -m venv venv_pipeline
15+
source venv_pipeline/bin/activate
16+
17+
pip install uv rust-just
18+
19+
just install
20+
21+
export MONGODB_URI=$MONGODB_URI
22+
23+
just test

0 commit comments

Comments
 (0)