Skip to content

chore: Update tools file option in integration tests #277

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 10, 2025
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
2 changes: 1 addition & 1 deletion packages/toolbox-core/integration.cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ options:
logging: CLOUD_LOGGING_ONLY
substitutions:
_VERSION: '3.13'
_TOOLBOX_VERSION: '0.5.0'
_TOOLBOX_VERSION: '0.7.0'
2 changes: 1 addition & 1 deletion packages/toolbox-core/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def toolbox_server(toolbox_version: str, tools_file_path: str) -> Generator[None
os.chmod("toolbox", 0o700)
# Run toolbox binary
toolbox_server = subprocess.Popen(
["./toolbox", "--tools_file", tools_file_path]
["./toolbox", "--tools-file", tools_file_path]
)

# Wait for server to start
Expand Down
2 changes: 1 addition & 1 deletion packages/toolbox-langchain/integration.cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ options:
logging: CLOUD_LOGGING_ONLY
substitutions:
_VERSION: '3.13'
_TOOLBOX_VERSION: '0.5.0'
_TOOLBOX_VERSION: '0.7.0'
2 changes: 1 addition & 1 deletion packages/toolbox-langchain/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def toolbox_server(toolbox_version: str, tools_file_path: str) -> Generator[None
os.chmod("toolbox", 0o700)
# Run toolbox binary
toolbox_server = subprocess.Popen(
["./toolbox", "--tools_file", tools_file_path]
["./toolbox", "--tools-file", tools_file_path]
)

# Wait for server to start
Expand Down
2 changes: 1 addition & 1 deletion packages/toolbox-llamaindex/integration.cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ options:
logging: CLOUD_LOGGING_ONLY
substitutions:
_VERSION: '3.13'
_TOOLBOX_VERSION: '0.5.0'
_TOOLBOX_VERSION: '0.7.0'
2 changes: 1 addition & 1 deletion packages/toolbox-llamaindex/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def toolbox_server(toolbox_version: str, tools_file_path: str) -> Generator[None
os.chmod("toolbox", 0o700)
# Run toolbox binary
toolbox_server = subprocess.Popen(
["./toolbox", "--tools_file", tools_file_path]
["./toolbox", "--tools-file", tools_file_path]
)

# Wait for server to start
Expand Down