We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d079ab8 commit 83a5fafCopy full SHA for 83a5faf
pymongo-vectorsearch-utils/config.env
@@ -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
@@ -0,0 +1,23 @@
+#!/bin/bash
+
+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