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:
101101def toolbox_version () -> str :
102102 return get_env_var ("TOOLBOX_VERSION" )
103103
104+
104105@pytest_asyncio .fixture (scope = "session" )
105106def toolbox_bucket () -> str :
106107 return get_env_var ("TOOLBOX_BUCKET" )
107108
109+
108110@pytest_asyncio .fixture (scope = "session" )
109111def tools_file_path (project_id : str ) -> Generator [str ]:
110112 """Provides a temporary file path containing the tools manifest."""
@@ -133,7 +135,9 @@ def auth_token2(project_id: str) -> str:
133135
134136
135137@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 ]:
137141 """Starts the toolbox server as a subprocess."""
138142 print ("Downloading toolbox binary from gcs bucket..." )
139143 source_blob_name = get_toolbox_binary_url (toolbox_version )
You can’t perform that action at this time.
0 commit comments