Skip to content

Commit cf1d0ab

Browse files
authored
chore: Update tools file option in integration tests (#277)
* chore: Update tools file option in integration tests * chore: Upgrade toolbox version for integration tests * chore: Update tools file option in integration tests
1 parent c69e029 commit cf1d0ab

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

packages/toolbox-core/integration.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ options:
4343
logging: CLOUD_LOGGING_ONLY
4444
substitutions:
4545
_VERSION: '3.13'
46-
_TOOLBOX_VERSION: '0.5.0'
46+
_TOOLBOX_VERSION: '0.7.0'

packages/toolbox-core/tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def toolbox_server(toolbox_version: str, tools_file_path: str) -> Generator[None
142142
os.chmod("toolbox", 0o700)
143143
# Run toolbox binary
144144
toolbox_server = subprocess.Popen(
145-
["./toolbox", "--tools_file", tools_file_path]
145+
["./toolbox", "--tools-file", tools_file_path]
146146
)
147147

148148
# Wait for server to start

packages/toolbox-langchain/integration.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ options:
4444
logging: CLOUD_LOGGING_ONLY
4545
substitutions:
4646
_VERSION: '3.13'
47-
_TOOLBOX_VERSION: '0.5.0'
47+
_TOOLBOX_VERSION: '0.7.0'

packages/toolbox-langchain/tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def toolbox_server(toolbox_version: str, tools_file_path: str) -> Generator[None
142142
os.chmod("toolbox", 0o700)
143143
# Run toolbox binary
144144
toolbox_server = subprocess.Popen(
145-
["./toolbox", "--tools_file", tools_file_path]
145+
["./toolbox", "--tools-file", tools_file_path]
146146
)
147147

148148
# Wait for server to start

packages/toolbox-llamaindex/integration.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ options:
4444
logging: CLOUD_LOGGING_ONLY
4545
substitutions:
4646
_VERSION: '3.13'
47-
_TOOLBOX_VERSION: '0.5.0'
47+
_TOOLBOX_VERSION: '0.7.0'

packages/toolbox-llamaindex/tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def toolbox_server(toolbox_version: str, tools_file_path: str) -> Generator[None
142142
os.chmod("toolbox", 0o700)
143143
# Run toolbox binary
144144
toolbox_server = subprocess.Popen(
145-
["./toolbox", "--tools_file", tools_file_path]
145+
["./toolbox", "--tools-file", tools_file_path]
146146
)
147147

148148
# Wait for server to start

0 commit comments

Comments
 (0)