add capabilities

This commit is contained in:
harisreedhar
2026-02-16 19:26:16 +05:30
committed by henryruhs
parent fddb5c927b
commit 02ba86308e
16 changed files with 265 additions and 249 deletions
+1 -2
View File
@@ -23,8 +23,7 @@ def before_all() -> None:
@pytest.fixture(scope = 'module')
def test_client() -> Iterator[TestClient]:
args_store.register_args([ 'source_paths', 'target_path' ], scopes = [ 'api' ])
args_store.register_args([ 'execution_providers' ], scopes = [ 'api' ])
args_store.register_args([ 'source_paths', 'target_path', 'execution_providers' ], scopes = [ 'api' ])
state_manager.init_item('execution_providers', [ 'cpu' ])
with TestClient(create_api()) as test_client: