Skip to content

Commit 342f181

Browse files
committed
fix: fix CI/CD pipeline for toolbox-adk for local toolbox-core
1 parent c406b59 commit 342f181

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

packages/toolbox-adk/integration.cloudbuild.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ steps:
2828
# Use $$ to escape shell variable for Cloud Build
2929
CORE_VERSION=$$(python -c "v={}; exec(open('../toolbox-core/src/toolbox_core/version.py').read(), v); print(v['__version__'])")
3030
sed -i "s/toolbox-core==[0-9.]*/toolbox-core==$$CORE_VERSION/g" pyproject.toml
31-
uv pip install -r requirements.txt -e '.[test]'
31+
uv pip install -r requirements.txt
32+
uv pip install -e '.[test]'
3233
entrypoint: /bin/bash
3334
- id: Run integration tests
3435
name: 'python:${_VERSION}'

packages/toolbox-core/integration.cloudbuild.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ steps:
2424
uv venv /workspace/venv
2525
source /workspace/venv/bin/activate
2626
uv pip install uv
27-
uv pip install -r requirements.txt -e '.[test]'
27+
uv pip install -e '.[test]'
28+
uv pip install -r requirements.txt
2829
entrypoint: /bin/bash
2930
- id: Run integration tests
3031
name: 'python:${_VERSION}'

packages/toolbox-langchain/integration.cloudbuild.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ steps:
2828
# Use $$ to escape shell variable for Cloud Build
2929
CORE_VERSION=$$(python -c "v={}; exec(open('../toolbox-core/src/toolbox_core/version.py').read(), v); print(v['__version__'])")
3030
sed -i "s/toolbox-core==[0-9.]*/toolbox-core==$$CORE_VERSION/g" pyproject.toml
31-
uv pip install -r requirements.txt -e '.[test]'
31+
uv pip install -r requirements.txt
32+
uv pip install -e '.[test]'
3233
entrypoint: /bin/bash
3334
- id: Run integration tests
3435
name: 'python:${_VERSION}'

packages/toolbox-llamaindex/integration.cloudbuild.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ steps:
2828
# Use $$ to escape shell variable for Cloud Build
2929
CORE_VERSION=$$(python -c "v={}; exec(open('../toolbox-core/src/toolbox_core/version.py').read(), v); print(v['__version__'])")
3030
sed -i "s/toolbox-core==[0-9.]*/toolbox-core==$$CORE_VERSION/g" pyproject.toml
31-
uv pip install -r requirements.txt -e '.[test]'
31+
uv pip install -r requirements.txt
32+
uv pip install -e '.[test]'
3233
entrypoint: /bin/bash
3334
- id: Run integration tests
3435
name: 'python:${_VERSION}'

0 commit comments

Comments
 (0)