feat: add da analyst status and returning-session freshness check

This commit is contained in:
ZdenekSrotyr 2026-04-10 19:44:07 +02:00
parent d0cdfcf8c1
commit 847b48f3af

View file

@ -250,3 +250,8 @@ class TestMetricsHelp:
result = runner.invoke(app, ["analyst", "--help"]) result = runner.invoke(app, ["analyst", "--help"])
assert result.exit_code == 0 assert result.exit_code == 0
assert "setup" in result.output assert "setup" in result.output
def test_analyst_status_help(self):
result = runner.invoke(app, ["analyst", "status", "--help"])
assert result.exit_code == 0
assert "freshness" in result.output.lower() or "workspace" in result.output.lower()