feat: add da analyst status and returning-session freshness check
This commit is contained in:
parent
d0cdfcf8c1
commit
847b48f3af
1 changed files with 5 additions and 0 deletions
|
|
@ -250,3 +250,8 @@ class TestMetricsHelp:
|
|||
result = runner.invoke(app, ["analyst", "--help"])
|
||||
assert result.exit_code == 0
|
||||
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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue