KINETIC / tests /test_cli_ui.py
AshrafGalibSk's picture
Publish Kinetic modular VLA stack (source, no weights)
9019b27 verified
Raw
History Blame Contribute Delete
383 Bytes
"""CLI routing tests (non-interactive paths)."""
from kinetic.cli import main
def test_version():
assert main(["--version"]) == 0
def test_info():
assert main(["info"]) == 0
def test_demo_list_via_cli():
assert main(["demo", "list"]) == 0
def test_run_json():
code = main(["run", "-i", "Pick up the bottle", "--steps", "300", "--json"])
assert code == 0