Compare commits

..

3 commits

Author SHA1 Message Date
b3a0c412f2 Merge branch 'develop' into feat/minteg
All checks were successful
Mypy / mypy (push) Successful in 1m8s
Pytest / pytest (3.14) (push) Successful in 1m13s
Pytest / pytest (3.13) (pull_request) Successful in 1m10s
Ruff / ruff (pull_request) Successful in 58s
Pytest / pytest (3.12) (push) Successful in 1m16s
Pytest / pytest (3.13) (push) Successful in 1m8s
Ruff / ruff (push) Successful in 58s
Mypy / mypy (pull_request) Successful in 1m9s
Pytest / pytest (3.12) (pull_request) Successful in 1m16s
Pytest / pytest (3.14) (pull_request) Successful in 1m12s
2026-05-06 09:19:26 +02:00
b3ead47adb Merge pull request 'Breaking change for CLI: change default path to current directory' (#38) from cli/default_path into develop
All checks were successful
Mypy / mypy (push) Successful in 1m11s
Pytest / pytest (3.12) (push) Successful in 1m17s
Pytest / pytest (3.13) (push) Successful in 1m8s
Pytest / pytest (3.14) (push) Successful in 1m13s
Ruff / ruff (push) Successful in 58s
Reviewed-on: #38
2026-05-06 09:14:40 +02:00
ac400aa901
Breaking change for CLI: change default path to current directory
All checks were successful
Pytest / pytest (3.13) (push) Successful in 1m11s
Mypy / mypy (pull_request) Successful in 1m10s
Ruff / ruff (pull_request) Successful in 1m1s
Mypy / mypy (push) Successful in 1m10s
Pytest / pytest (3.12) (push) Successful in 1m18s
Pytest / pytest (3.14) (push) Successful in 1m12s
Ruff / ruff (push) Successful in 1m0s
Pytest / pytest (3.12) (pull_request) Successful in 1m17s
Pytest / pytest (3.13) (pull_request) Successful in 1m11s
Pytest / pytest (3.14) (pull_request) Successful in 1m13s
2026-05-05 22:32:13 +02:00

View file

@ -29,7 +29,7 @@ def _version_callback(value: bool) -> None:
@app.command() @app.command()
def update( def update(
path: Path = typer.Option( path: Path = typer.Option(
Path('./corrlib'), Path('.'),
"--dataset", "--dataset",
"-d", "-d",
), ),
@ -45,7 +45,7 @@ def update(
@app.command() @app.command()
def lister( def lister(
path: Path = typer.Option( path: Path = typer.Option(
Path('./corrlib'), Path('.'),
"--dataset", "--dataset",
"-d", "-d",
), ),
@ -76,7 +76,7 @@ def lister(
@app.command() @app.command()
def alias_add( def alias_add(
path: Path = typer.Option( path: Path = typer.Option(
Path('./corrlib'), Path('.'),
"--dataset", "--dataset",
"-d", "-d",
), ),
@ -94,7 +94,7 @@ def alias_add(
@app.command() @app.command()
def find( def find(
path: Path = typer.Option( path: Path = typer.Option(
Path('./corrlib'), Path('.'),
"--dataset", "--dataset",
"-d", "-d",
), ),
@ -123,7 +123,7 @@ def find(
@app.command() @app.command()
def stat( def stat(
path: Path = typer.Option( path: Path = typer.Option(
Path('./corrlib'), Path('.'),
"--dataset", "--dataset",
"-d", "-d",
), ),
@ -142,7 +142,7 @@ def stat(
@app.command() @app.command()
def check(path: Path = typer.Option( def check(path: Path = typer.Option(
Path('./corrlib'), Path('.'),
"--dataset", "--dataset",
"-d", "-d",
), ),
@ -156,7 +156,7 @@ def check(path: Path = typer.Option(
@app.command() @app.command()
def importer( def importer(
path: Path = typer.Option( path: Path = typer.Option(
Path('./corrlib'), Path('.'),
"--dataset", "--dataset",
"-d", "-d",
), ),
@ -179,7 +179,7 @@ def importer(
@app.command() @app.command()
def reimporter( def reimporter(
path: Path = typer.Option( path: Path = typer.Option(
Path('./corrlib'), Path('.'),
"--dataset", "--dataset",
"-d", "-d",
), ),
@ -203,7 +203,7 @@ def reimporter(
@app.command() @app.command()
def init( def init(
path: Path = typer.Option( path: Path = typer.Option(
Path('./corrlib'), Path('.'),
"--dataset", "--dataset",
"-d", "-d",
), ),
@ -223,7 +223,7 @@ def init(
@app.command() @app.command()
def drop_cache( def drop_cache(
path: Path = typer.Option( path: Path = typer.Option(
Path('./corrlib'), Path('.'),
"--dataset", "--dataset",
"-d", "-d",
), ),