File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
packages/toolbox-core/tests Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -101,10 +101,12 @@ def project_id() -> str:
101
101
def toolbox_version () -> str :
102
102
return get_env_var ("TOOLBOX_VERSION" )
103
103
104
+
104
105
@pytest_asyncio .fixture (scope = "session" )
105
106
def toolbox_bucket () -> str :
106
107
return get_env_var ("TOOLBOX_BUCKET" )
107
108
109
+
108
110
@pytest_asyncio .fixture (scope = "session" )
109
111
def tools_file_path (project_id : str ) -> Generator [str ]:
110
112
"""Provides a temporary file path containing the tools manifest."""
@@ -133,7 +135,9 @@ def auth_token2(project_id: str) -> str:
133
135
134
136
135
137
@pytest_asyncio .fixture (scope = "session" )
136
- def toolbox_server (toolbox_version : str , toolbox_bucket : str , tools_file_path : str ) -> Generator [None ]:
138
+ def toolbox_server (
139
+ toolbox_version : str , toolbox_bucket : str , tools_file_path : str
140
+ ) -> Generator [None ]:
137
141
"""Starts the toolbox server as a subprocess."""
138
142
print ("Downloading toolbox binary from gcs bucket..." )
139
143
source_blob_name = get_toolbox_binary_url (toolbox_version )
You can’t perform that action at this time.
0 commit comments