refactor/data_backend #12

Merged
jkuhl merged 36 commits from refactor/data_backend into develop 2025-12-04 15:47:45 +01:00
Showing only changes of commit c1aef6cdf2 - Show all commits

expose tracker option in cli
Some checks failed
Ruff / ruff (push) Waiting to run
Mypy / mypy (push) Failing after 48s
Pytest / pytest (3.12) (push) Has been cancelled
Pytest / pytest (3.13) (push) Has been cancelled
Pytest / pytest (3.14) (push) Has been cancelled

Justus Kuhlmann 2025-12-04 12:39:30 +01:00
Signed by: jkuhl
GPG key ID: 00ED992DD79B85A6

View file

@ -152,12 +152,17 @@ def init(
str('./corrlib'),
"--dataset",
"-d",
),
) -> None:
),
tracker: str = typer.Option(
str('datalad'),
"--tracker",
"-t",
),
) -> None:
"""
Initialize a new backlog-database.
"""
create(path)
create(path, tracker)
return
@ -167,8 +172,8 @@ def drop_cache(
str('./corrlib'),
"--dataset",
"-d",
),
) -> None:
),
) -> None:
"""
Drop the currect cache directory of the dataset.
"""