Feat/refactor args (#1045)

* follow the new argument naming convention

* revert

* use get_xxx_arguments

* Simple fix Args

* Fix more stuff

---------

Co-authored-by: henryruhs <info@henryruhs.com>
This commit is contained in:
Harisreedhar
2026-02-19 01:38:23 +05:30
committed by henryruhs
parent 2e78cf4617
commit 08653f85ff
18 changed files with 114 additions and 109 deletions
+3 -3
View File
@@ -25,7 +25,7 @@ def before_all() -> None:
@pytest.fixture(scope = 'module')
def test_client() -> Iterator[TestClient]:
program = ArgumentParser()
args_store.register_arguments(
args_store.register_argument_set(
[
program.add_argument(
'--source-paths',
@@ -34,7 +34,7 @@ def test_client() -> Iterator[TestClient]:
],
scopes = [ 'api' ]
)
args_store.register_arguments(
args_store.register_argument_set(
[
program.add_argument(
'--target-path'
@@ -42,7 +42,7 @@ def test_client() -> Iterator[TestClient]:
],
scopes = [ 'api' ]
)
args_store.register_arguments(
args_store.register_argument_set(
[
program.add_argument(
'--execution-providers',