chore: limit generic status phrases to long-running notifications

This commit is contained in:
devatnull 2026-06-28 22:02:39 +03:00 committed by Teknium
parent 4bf5b563bd
commit fddc95f4c2
12 changed files with 121 additions and 317 deletions

View file

@ -99,7 +99,7 @@ class TestVerboseAndToolProgress:
def test_tool_progress_mode_is_string(self):
cli = _make_cli()
assert isinstance(cli.tool_progress_mode, str)
assert cli.tool_progress_mode in {"off", "generic", "new", "all", "verbose"}
assert cli.tool_progress_mode in {"off", "new", "all", "verbose"}
class TestFallbackChainInit: