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
14 changes: 6 additions & 8 deletions langchain-python/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,16 @@ PYTHON_BINARY=$(find_python3)
# shellcheck disable=SC2164
cd libs/langchain-mongodb

$PYTHON_BINARY -m venv venv_pipeline
source venv_pipeline/bin/activate
$PYTHON_BINARY -m venv venv_pipeline
source venv_pipeline/bin/activate

pip install poetry
pip install uv rust-just

poetry lock

poetry install --with dev
just install

export MONGODB_URI=$MONGODB_URI
export OPENAI_API_KEY=$OPENAI_API_KEY

make test
just test

make integration_test
just integration_tests
14 changes: 6 additions & 8 deletions langgraph-python/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,16 @@ PYTHON_BINARY=$(find_python3)
# shellcheck disable=SC2164
cd libs/langgraph-checkpoint-mongodb

$PYTHON_BINARY -m venv venv_pipeline
source venv_pipeline/bin/activate
$PYTHON_BINARY -m venv venv_pipeline
source venv_pipeline/bin/activate

pip install poetry
pip install uv rust-just

poetry lock

poetry install --with dev
just install

export MONGODB_URI=$MONGODB_URI
export OPENAI_API_KEY=$OPENAI_API_KEY

make test
just test

make integration_test
just integration_tests
Loading