From 1dbd1dc4a0e7bf63365f5ebaa7d03ed727fd3598 Mon Sep 17 00:00:00 2001 From: syachamaneni-lc Date: Wed, 23 Sep 2026 09:52:01 -0700 Subject: [PATCH] test(cli): remove beta notice tests --- libs/cli/tests/unit_tests/test_deploy_agents.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/libs/cli/tests/unit_tests/test_deploy_agents.py b/libs/cli/tests/unit_tests/test_deploy_agents.py index 254298822..14de9f099 100644 --- a/libs/cli/tests/unit_tests/test_deploy_agents.py +++ b/libs/cli/tests/unit_tests/test_deploy_agents.py @@ -71,7 +71,6 @@ def test_agent_create(deployment_api, tmp_path, monkeypatch): _, requests, build = deployment_api result = CliRunner().invoke(cli, AGENT_ARGS) assert result.exit_code == 0, result.output - assert "--agent-id and --environment flags are in private beta" in result.output assert dict(requests[0].url.params) == { "name_contains": "", "agent_id": "customer-support", @@ -104,14 +103,3 @@ def test_agent_rejects_explicit_name(deployment_api, monkeypatch): assert result.exit_code == 2 assert "cannot be combined" in result.output assert not requests - - -@pytest.mark.parametrize( - "args", [["--agent-id", "customer-support"], ["--environment", "staging"], []] -) -def test_agent_list_beta_notice(deployment_api, args): - result = CliRunner().invoke(cli, ["deploy", "list", *args]) - assert result.exit_code == 0, result.output - assert ( - "--agent-id and --environment flags are in private beta" in result.output - ) == bool(args)